diff --git a/README b/README index 1adde7fac7..a4189cfae8 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ README ------ StatusNet 0.9.6 "Man on the Moon" -19 October 2010 +25 October 2010 - RELEASE CANDIDATE This is the README file for StatusNet, the Open Source microblogging platform. It includes installation instructions, descriptions of diff --git a/actions/accessadminpanel.php b/actions/accessadminpanel.php index 73354e97a7..027c69c5e5 100644 --- a/actions/accessadminpanel.php +++ b/actions/accessadminpanel.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class AccessadminpanelAction extends AdminPanelAction { /** @@ -48,10 +47,9 @@ class AccessadminpanelAction extends AdminPanelAction * * @return string page title */ - function title() { - // TRANS: Page title + // TRANS: Page title for Access admin panel that allows configuring site access. return _('Access'); } @@ -60,10 +58,9 @@ class AccessadminpanelAction extends AdminPanelAction * * @return string instructions */ - function getInstructions() { - // TRANS: Page notice + // TRANS: Page notice. return _('Site access settings'); } @@ -72,7 +69,6 @@ class AccessadminpanelAction extends AdminPanelAction * * @return void */ - function showForm() { $form = new AccessAdminPanelForm($this); @@ -85,7 +81,6 @@ class AccessadminpanelAction extends AdminPanelAction * * @return void */ - function saveSettings() { static $booleans = array('site' => array('private', 'inviteonly', 'closed')); @@ -110,7 +105,6 @@ class AccessadminpanelAction extends AdminPanelAction return; } - } class AccessAdminPanelForm extends AdminForm @@ -120,7 +114,6 @@ class AccessAdminPanelForm extends AdminForm * * @return int ID of the form */ - function id() { return 'form_site_admin_panel'; @@ -131,7 +124,6 @@ class AccessAdminPanelForm extends AdminForm * * @return string class of the form */ - function formClass() { return 'form_settings'; @@ -142,7 +134,6 @@ class AccessAdminPanelForm extends AdminForm * * @return string URL of the action */ - function action() { return common_local_url('accessadminpanel'); @@ -153,7 +144,6 @@ class AccessAdminPanelForm extends AdminForm * * @return void */ - function formData() { $this->out->elementStart('fieldset', array('id' => 'settings_admin_access')); @@ -161,7 +151,7 @@ class AccessAdminPanelForm extends AdminForm $this->out->element('legend', null, _('Registration')); $this->out->elementStart('ul', 'form_data'); $this->li(); - // TRANS: Checkbox instructions for admin setting "Private" + // TRANS: Checkbox instructions for admin setting "Private". $instructions = _('Prohibit anonymous users (not logged in) from viewing site?'); // TRANS: Checkbox label for prohibiting anonymous users from viewing site. $this->out->checkbox('private', _m('LABEL', 'Private'), @@ -170,7 +160,7 @@ class AccessAdminPanelForm extends AdminForm $this->unli(); $this->li(); - // TRANS: Checkbox instructions for admin setting "Invite only" + // TRANS: Checkbox instructions for admin setting "Invite only". $instructions = _('Make registration invitation only.'); // TRANS: Checkbox label for configuring site as invite only. $this->out->checkbox('inviteonly', _('Invite only'), @@ -179,7 +169,7 @@ class AccessAdminPanelForm extends AdminForm $this->unli(); $this->li(); - // TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) + // TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). $instructions = _('Disable new registrations.'); // TRANS: Checkbox label for disabling new user registrations. $this->out->checkbox('closed', _('Closed'), @@ -195,12 +185,11 @@ class AccessAdminPanelForm extends AdminForm * * @return void */ - function formActions() { - // TRANS: Title / tooltip for button to save access settings in site admin panel + // TRANS: Title for button to save access settings in site admin panel. $title = _('Save access settings'); + // TRANS: Tooltip for button to save access settings in site admin panel. $this->out->submit('submit', _m('BUTTON', 'Save'), 'submit', null, $title); } - } diff --git a/actions/accesstoken.php b/actions/accesstoken.php index 76bd40473a..bfb771b0b3 100644 --- a/actions/accesstoken.php +++ b/actions/accesstoken.php @@ -67,4 +67,3 @@ class AccesstokenAction extends Action } } } -?> diff --git a/actions/all.php b/actions/all.php index b65335abcd..dc08592faf 100644 --- a/actions/all.php +++ b/actions/all.php @@ -64,7 +64,7 @@ class AllAction extends ProfileAction } if ($this->page > 1 && $this->notice->N == 0) { - // TRANS: Server error when page not found (404) + // TRANS: Server error when page not found (404). $this->serverError(_('No such page.'), $code = 404); } @@ -76,6 +76,7 @@ class AllAction extends ProfileAction parent::handle($args); if (!$this->user) { + // TRANS: Client error when user not found for an action. $this->clientError(_('No such user.')); return; } @@ -103,7 +104,7 @@ class AllAction extends ProfileAction 'nickname' => $this->user->nickname) ), - // TRANS: %s is user nickname + // TRANS: %s is user nickname. sprintf(_('Feed for friends of %s (RSS 1.0)'), $this->user->nickname)), new Feed(Feed::RSS2, common_local_url( @@ -112,7 +113,7 @@ class AllAction extends ProfileAction 'id' => $this->user->nickname ) ), - // TRANS: %s is user nickname + // TRANS: %s is user nickname. sprintf(_('Feed for friends of %s (RSS 2.0)'), $this->user->nickname)), new Feed(Feed::ATOM, common_local_url( @@ -121,7 +122,7 @@ class AllAction extends ProfileAction 'id' => $this->user->nickname ) ), - // TRANS: %s is user nickname + // TRANS: %s is user nickname. sprintf(_('Feed for friends of %s (Atom)'), $this->user->nickname)) ); } @@ -134,7 +135,7 @@ class AllAction extends ProfileAction function showEmptyListMessage() { - // TRANS: %s is user nickname + // TRANS: Empty list message. %s is a user nickname. $message = sprintf(_('This is the timeline for %s and friends but no one has posted anything yet.'), $this->user->nickname) . ' '; if (common_logged_in()) { @@ -144,7 +145,7 @@ class AllAction extends ProfileAction // TRANS: This message contains Markdown links. Keep "](" together. $message .= _('Try subscribing to more people, [join a group](%%action.groups%%) or post something yourself.'); } else { - // TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" + // 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. $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); } @@ -183,10 +184,10 @@ class AllAction extends ProfileAction { $user = common_current_user(); if ($user && ($user->id == $this->user->id)) { - // TRANS: H1 text + // TRANS: H1 text for page when viewing a list for self. $this->element('h1', null, _("You and friends")); } else { - // TRANS: H1 text. %s is a user nickname + // TRANS: H1 text for page. %s is a user nickname. $this->element('h1', null, sprintf(_('%s and friends'), $this->user->nickname)); } } diff --git a/actions/allrss.php b/actions/allrss.php index 7df0b1ef7c..d398c8a6ad 100644 --- a/actions/allrss.php +++ b/actions/allrss.php @@ -1,5 +1,4 @@ user = User::staticGet('nickname', $nickname); if (!$this->user) { + // TRANS: Client error when user not found for an rss related action. $this->clientError(_('No such user.')); return false; } else { @@ -127,7 +126,7 @@ class AllrssAction extends Rss10Action * Get image. * * @return string user avatar URL or null - */ + */ function getImage() { $user = $this->user; @@ -139,4 +138,3 @@ class AllrssAction extends Rss10Action return $avatar ? $avatar->url : null; } } - diff --git a/actions/apiaccountratelimitstatus.php b/actions/apiaccountratelimitstatus.php index e2dff2db94..8d7f89eadc 100644 --- a/actions/apiaccountratelimitstatus.php +++ b/actions/apiaccountratelimitstatus.php @@ -49,10 +49,8 @@ require_once INSTALLDIR . '/lib/apibareauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiAccountRateLimitStatusAction extends ApiBareAuthAction { - /** * Handle the request * @@ -62,7 +60,6 @@ class ApiAccountRateLimitStatusAction extends ApiBareAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -119,11 +116,8 @@ class ApiAccountRateLimitStatusAction extends ApiBareAuthAction * * @return boolean is read only action? */ - function isReadOnly($args) { return true; } - } - diff --git a/actions/apiaccountupdatedeliverydevice.php b/actions/apiaccountupdatedeliverydevice.php index d5be6dc652..e7d44dc44d 100644 --- a/actions/apiaccountupdatedeliverydevice.php +++ b/actions/apiaccountupdatedeliverydevice.php @@ -53,7 +53,6 @@ class ApiAccountUpdateDeliveryDeviceAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ function prepare($args) { diff --git a/actions/apiaccountupdateprofile.php b/actions/apiaccountupdateprofile.php index aea10e33e3..163dac42d8 100644 --- a/actions/apiaccountupdateprofile.php +++ b/actions/apiaccountupdateprofile.php @@ -51,7 +51,6 @@ class ApiAccountUpdateProfileAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ function prepare($args) { @@ -91,6 +90,7 @@ class ApiAccountUpdateProfileAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( + // TRANS: Client error displayed when trying to handle an unknown API method. _('API method not found.'), 404, $this->format diff --git a/actions/apiaccountupdateprofilebackgroundimage.php b/actions/apiaccountupdateprofilebackgroundimage.php index 87af962d21..badd8db002 100644 --- a/actions/apiaccountupdateprofilebackgroundimage.php +++ b/actions/apiaccountupdateprofilebackgroundimage.php @@ -114,6 +114,7 @@ class ApiAccountUpdateProfileBackgroundImageAction extends ApiAuthAction } if (empty($this->user)) { + // TRANS: Client error when user not found updating a profile background image. $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/apiaccountupdateprofilecolors.php b/actions/apiaccountupdateprofilecolors.php index 9e07d80de3..109fbf959e 100644 --- a/actions/apiaccountupdateprofilecolors.php +++ b/actions/apiaccountupdateprofilecolors.php @@ -43,10 +43,8 @@ require_once INSTALLDIR . '/lib/apiauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiAccountUpdateProfileColorsAction extends ApiAuthAction { - var $profile_background_color = null; var $profile_text_color = null; var $profile_link_color = null; @@ -59,9 +57,7 @@ class ApiAccountUpdateProfileColorsAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -100,7 +96,6 @@ class ApiAccountUpdateProfileColorsAction extends ApiAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -116,6 +111,7 @@ class ApiAccountUpdateProfileColorsAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( + // TRANS: Client error displayed trying to execute an unknown API method updating profile colours. _('API method not found.'), 404, $this->format @@ -126,7 +122,6 @@ class ApiAccountUpdateProfileColorsAction extends ApiAuthAction $design = $this->user->getDesign(); if (!empty($design)) { - $original = clone($design); try { @@ -140,12 +135,11 @@ class ApiAccountUpdateProfileColorsAction extends ApiAuthAction if ($result === false) { common_log_db_error($design, 'UPDATE', __FILE__); + // TRANS: Client error displayed when a database error occurs updating profile colours. $this->clientError(_('Could not update your design.')); return; } - } else { - $this->user->query('BEGIN'); // save new design @@ -162,6 +156,7 @@ class ApiAccountUpdateProfileColorsAction extends ApiAuthAction if (empty($id)) { common_log_db_error($id, 'INSERT', __FILE__); + // TRANS: Client error displayed when a database error occurs inserting profile colours. $this->clientError(_('Unable to save your design settings.')); return; } @@ -172,6 +167,7 @@ class ApiAccountUpdateProfileColorsAction extends ApiAuthAction if (empty($result)) { common_log_db_error($original, 'UPDATE', __FILE__); + // TRANS: Client error displayed when a database error occurs updating profile colours. $this->clientError(_('Unable to save your design settings.')); $this->user->query('ROLLBACK'); return; @@ -183,6 +179,7 @@ class ApiAccountUpdateProfileColorsAction extends ApiAuthAction $profile = $this->user->getProfile(); if (empty($profile)) { + // TRANS: Client error displayed a user has no profile updating profile colours. $this->clientError(_('User has no profile.')); return; } @@ -207,7 +204,6 @@ class ApiAccountUpdateProfileColorsAction extends ApiAuthAction * * @return void */ - function setColors($design) { $bgcolor = empty($this->profile_background_color) ? @@ -243,5 +239,4 @@ class ApiAccountUpdateProfileColorsAction extends ApiAuthAction return true; } - } diff --git a/actions/apiaccountupdateprofileimage.php b/actions/apiaccountupdateprofileimage.php index 1f38bd2204..f2886509d7 100644 --- a/actions/apiaccountupdateprofileimage.php +++ b/actions/apiaccountupdateprofileimage.php @@ -43,19 +43,15 @@ require_once INSTALLDIR . '/lib/apiauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiAccountUpdateProfileImageAction extends ApiAuthAction { - /** * Take arguments for running * * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -74,7 +70,6 @@ class ApiAccountUpdateProfileImageAction extends ApiAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -105,6 +100,7 @@ class ApiAccountUpdateProfileImageAction extends ApiAuthAction } if (empty($this->user)) { + // TRANS: Client error displayed updating profile image without having a user object. $this->clientError(_('No such user.'), 404, $this->format); return; } @@ -130,6 +126,7 @@ class ApiAccountUpdateProfileImageAction extends ApiAuthAction $profile = $this->user->getProfile(); if (empty($profile)) { + // TRANS: Client error displayed if a user profile could not be found updating a profile image. $this->clientError(_('User has no profile.')); return; } @@ -150,5 +147,4 @@ class ApiAccountUpdateProfileImageAction extends ApiAuthAction $this->endDocument('json'); } } - } diff --git a/actions/apiaccountverifycredentials.php b/actions/apiaccountverifycredentials.php index 79416e9b26..26d4e2fc5c 100644 --- a/actions/apiaccountverifycredentials.php +++ b/actions/apiaccountverifycredentials.php @@ -48,10 +48,8 @@ require_once INSTALLDIR . '/lib/apiauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiAccountVerifyCredentialsAction extends ApiAuthAction { - /** * Handle the request * @@ -61,12 +59,12 @@ class ApiAccountVerifyCredentialsAction extends ApiAuthAction * * @return void */ - function handle($args) { parent::handle($args); if (!in_array($this->format, array('xml', 'json'))) { + // TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. $this->clientError(_('API method not found.'), $code = 404); return; } @@ -91,12 +89,9 @@ class ApiAccountVerifyCredentialsAction extends ApiAuthAction * @param array $args other arguments * * @return boolean true - * - **/ - + */ function isReadOnly($args) { return true; } - } diff --git a/actions/apiblockdestroy.php b/actions/apiblockdestroy.php index b699077849..7dd0859e9c 100644 --- a/actions/apiblockdestroy.php +++ b/actions/apiblockdestroy.php @@ -55,7 +55,6 @@ class ApiBlockDestroyAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ function prepare($args) { @@ -91,6 +90,7 @@ class ApiBlockDestroyAction extends ApiAuthAction } if (empty($this->user) || empty($this->other)) { + // TRANS: Client error when user not found for an API action to remove a block for a user. $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/apidirectmessage.php b/actions/apidirectmessage.php index 4e2ec5eb08..e072e27b83 100644 --- a/actions/apidirectmessage.php +++ b/actions/apidirectmessage.php @@ -48,7 +48,6 @@ require_once INSTALLDIR . '/lib/apiauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiDirectMessageAction extends ApiAuthAction { var $messages = null; @@ -64,9 +63,7 @@ class ApiDirectMessageAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -87,12 +84,12 @@ class ApiDirectMessageAction extends ApiAuthAction // Action was called by /api/direct_messages/sent.format $this->title = sprintf( - // TRANS: %s is a user nickname. + // TRANS: Title. %s is a user nickname. _("Direct messages from %s"), $this->user->nickname ); $this->subtitle = sprintf( - // TRANS: %s is a user nickname. + // TRANS: Subtitle. %s is a user nickname. _("All the direct messages sent from %s"), $this->user->nickname ); @@ -101,12 +98,12 @@ class ApiDirectMessageAction extends ApiAuthAction $this->id = "tag:$taguribase:SentDirectMessages:" . $this->user->id; } else { $this->title = sprintf( - // TRANS: %s is a user nickname. + // TRANS: Title. %s is a user nickname. _("Direct messages to %s"), $this->user->nickname ); $this->subtitle = sprintf( - // TRANS: %s is a user nickname. + // TRANS: Subtitle. %s is a user nickname. _("All the direct messages sent to %s"), $this->user->nickname ); @@ -129,7 +126,6 @@ class ApiDirectMessageAction extends ApiAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -141,7 +137,6 @@ class ApiDirectMessageAction extends ApiAuthAction * * @return void */ - function showMessages() { switch($this->format) { @@ -169,7 +164,6 @@ class ApiDirectMessageAction extends ApiAuthAction * * @return array notices */ - function getMessages() { $message = new Message(); @@ -208,7 +202,6 @@ class ApiDirectMessageAction extends ApiAuthAction * * @return boolean true */ - function isReadOnly($args) { return true; @@ -219,7 +212,6 @@ class ApiDirectMessageAction extends ApiAuthAction * * @return string datestamp of the latest notice in the stream */ - function lastModified() { if (!empty($this->messages)) { @@ -234,7 +226,6 @@ class ApiDirectMessageAction extends ApiAuthAction * * @return void */ - function showXmlDirectMessages() { $this->initDocument('xml'); @@ -255,7 +246,6 @@ class ApiDirectMessageAction extends ApiAuthAction * * @return void */ - function showJsonDirectMessages() { $this->initDocument('json'); @@ -276,7 +266,6 @@ class ApiDirectMessageAction extends ApiAuthAction * * @return void */ - function showRssDirectMessages() { $this->initDocument('rss'); @@ -311,7 +300,6 @@ class ApiDirectMessageAction extends ApiAuthAction * * @return void */ - function showAtomDirectMessages() { $this->initDocument('atom'); @@ -353,7 +341,6 @@ class ApiDirectMessageAction extends ApiAuthAction * * @return string etag */ - function etag() { if (!empty($this->messages)) { @@ -374,5 +361,4 @@ class ApiDirectMessageAction extends ApiAuthAction return null; } - } diff --git a/actions/apidirectmessagenew.php b/actions/apidirectmessagenew.php index ccef57b3f8..b335a9c93e 100644 --- a/actions/apidirectmessagenew.php +++ b/actions/apidirectmessagenew.php @@ -60,7 +60,6 @@ class ApiDirectMessageNewAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ function prepare($args) { @@ -69,6 +68,7 @@ class ApiDirectMessageNewAction extends ApiAuthAction $this->user = $this->auth_user; if (empty($this->user)) { + // TRANS: Client error when user not found for an API direct message action. $this->clientError(_('No such user.'), 404, $this->format); return; } @@ -113,7 +113,7 @@ class ApiDirectMessageNewAction extends ApiAuthAction if (empty($this->content)) { $this->clientError( - // TRANS: Client error (406). + // TRANS: Client error displayed when no message text was submitted (406). _('No message text!'), 406, $this->format diff --git a/actions/apifavoritecreate.php b/actions/apifavoritecreate.php index 90a29d2288..b2f6266ebf 100644 --- a/actions/apifavoritecreate.php +++ b/actions/apifavoritecreate.php @@ -58,7 +58,6 @@ class ApiFavoriteCreateAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ function prepare($args) { @@ -95,6 +94,7 @@ class ApiFavoriteCreateAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( + // TRANS: Client error displayed when trying to handle an unknown API method. _('API method not found.'), 404, $this->format diff --git a/actions/apifavoritedestroy.php b/actions/apifavoritedestroy.php index c2e1ebafc7..f86c985dc0 100644 --- a/actions/apifavoritedestroy.php +++ b/actions/apifavoritedestroy.php @@ -48,10 +48,8 @@ require_once INSTALLDIR . '/lib/apiauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiFavoriteDestroyAction extends ApiAuthAction { - var $notice = null; /** @@ -60,9 +58,7 @@ class ApiFavoriteDestroyAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -82,7 +78,6 @@ class ApiFavoriteDestroyAction extends ApiAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -99,6 +94,7 @@ class ApiFavoriteDestroyAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( + // TRANS: Client error displayed when trying to handle an unknown API method. _('API method not found.'), 404, $this->format @@ -108,6 +104,7 @@ class ApiFavoriteDestroyAction extends ApiAuthAction if (empty($this->notice)) { $this->clientError( + // TRANS: Client error displayed when trying to remove a favourite with an invalid ID. _('No status found with that ID.'), 404, $this->format @@ -121,6 +118,7 @@ class ApiFavoriteDestroyAction extends ApiAuthAction if (!$fave->find(true)) { $this->clientError( + // TRANS: Client error displayed when trying to remove a favourite that was not a favourite. _('That status is not a favorite.'), 403, $this->favorite @@ -133,6 +131,7 @@ class ApiFavoriteDestroyAction extends ApiAuthAction if (!$result) { common_log_db_error($fave, 'DELETE', __FILE__); $this->clientError( + // TRANS: Client error displayed when removing a favourite has failed. _('Could not delete favorite.'), 404, $this->format @@ -148,5 +147,4 @@ class ApiFavoriteDestroyAction extends ApiAuthAction $this->show_single_json_status($this->notice); } } - } diff --git a/actions/apifriendshipscreate.php b/actions/apifriendshipscreate.php index 64c857c70c..89557f8392 100644 --- a/actions/apifriendshipscreate.php +++ b/actions/apifriendshipscreate.php @@ -48,7 +48,6 @@ require_once INSTALLDIR . '/lib/apiauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiFriendshipsCreateAction extends ApiAuthAction { var $other = null; @@ -61,7 +60,6 @@ class ApiFriendshipsCreateAction extends ApiAuthAction * @return boolean success flag * */ - function prepare($args) { parent::prepare($args); @@ -81,7 +79,6 @@ class ApiFriendshipsCreateAction extends ApiAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -98,6 +95,7 @@ class ApiFriendshipsCreateAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( + // TRANS: Client error displayed when trying to handle an unknown API method. _('API method not found.'), 404, $this->format @@ -107,6 +105,7 @@ class ApiFriendshipsCreateAction extends ApiAuthAction if (empty($this->other)) { $this->clientError( + // TRANS: Client error displayed when trying follow who's profile could not be found. _('Could not follow user: profile not found.'), 403, $this->format @@ -116,6 +115,8 @@ class ApiFriendshipsCreateAction extends ApiAuthAction if ($this->user->isSubscribed($this->other)) { $errmsg = sprintf( + // 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. _('Could not follow user: %s is already on your list.'), $this->other->nickname ); @@ -134,5 +135,4 @@ class ApiFriendshipsCreateAction extends ApiAuthAction $this->showProfile($this->other, $this->format); $this->endDocument($this->format); } - } diff --git a/actions/apifriendshipsdestroy.php b/actions/apifriendshipsdestroy.php index 21da23ef7c..a5dff08bab 100644 --- a/actions/apifriendshipsdestroy.php +++ b/actions/apifriendshipsdestroy.php @@ -48,7 +48,6 @@ require_once INSTALLDIR . '/lib/apiauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiFriendshipsDestroyAction extends ApiAuthAction { var $other = null; @@ -61,7 +60,6 @@ class ApiFriendshipsDestroyAction extends ApiAuthAction * @return boolean success flag * */ - function prepare($args) { parent::prepare($args); @@ -81,7 +79,6 @@ class ApiFriendshipsDestroyAction extends ApiAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -98,6 +95,7 @@ class ApiFriendshipsDestroyAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( + // TRANS: Client error displayed when trying to handle an unknown API method. _('API method not found.'), 404, $this->format @@ -107,6 +105,7 @@ class ApiFriendshipsDestroyAction extends ApiAuthAction if (empty($this->other)) { $this->clientError( + // TRANS: Client error displayed when trying to unfollow a user that cannot be found. _('Could not unfollow user: User not found.'), 403, $this->format @@ -118,6 +117,7 @@ class ApiFriendshipsDestroyAction extends ApiAuthAction if ($this->user->id == $this->other->id) { $this->clientError( + // TRANS: Client error displayed when trying to unfollow self. _("You cannot unfollow yourself."), 403, $this->format @@ -132,5 +132,4 @@ class ApiFriendshipsDestroyAction extends ApiAuthAction $this->showProfile($this->other, $this->format); $this->endDocument($this->format); } - } diff --git a/actions/apifriendshipsexists.php b/actions/apifriendshipsexists.php index 725178fd42..c8766633b6 100644 --- a/actions/apifriendshipsexists.php +++ b/actions/apifriendshipsexists.php @@ -47,7 +47,6 @@ require_once INSTALLDIR . '/lib/apiprivateauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiFriendshipsExistsAction extends ApiPrivateAuthAction { var $profile_a = null; @@ -59,9 +58,7 @@ class ApiFriendshipsExistsAction extends ApiPrivateAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -81,13 +78,13 @@ class ApiFriendshipsExistsAction extends ApiPrivateAuthAction * * @return void */ - function handle($args) { parent::handle($args); if (empty($this->profile_a) || empty($this->profile_b)) { $this->clientError( + // TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists. _('Two valid IDs or screen_names must be supplied.'), 400, $this->format @@ -122,10 +119,8 @@ class ApiFriendshipsExistsAction extends ApiPrivateAuthAction * * @return boolean is read only action? */ - function isReadOnly($args) { return true; } - } diff --git a/actions/apifriendshipsshow.php b/actions/apifriendshipsshow.php index f29e637137..6b069c4fcf 100644 --- a/actions/apifriendshipsshow.php +++ b/actions/apifriendshipsshow.php @@ -46,7 +46,6 @@ require_once INSTALLDIR . '/lib/apibareauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiFriendshipsShowAction extends ApiBareAuthAction { var $source = null; @@ -58,9 +57,7 @@ class ApiFriendshipsShowAction extends ApiBareAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -93,7 +90,6 @@ class ApiFriendshipsShowAction extends ApiBareAuthAction * * @return boolean true or false */ - function requiresAuth() { if (common_config('site', 'private')) { @@ -119,18 +115,19 @@ class ApiFriendshipsShowAction extends ApiBareAuthAction * * @return void */ - function handle($args) { parent::handle($args); if (!in_array($this->format, array('xml', 'json'))) { + // TRANS: Client error displayed trying to execute an unknown API method showing friendship. $this->clientError(_('API method not found.'), 404); return; } if (empty($this->source)) { $this->clientError( + // TRANS: Client error displayed when a source user could not be determined showing friendship. _('Could not determine source user.'), 404 ); @@ -139,6 +136,7 @@ class ApiFriendshipsShowAction extends ApiBareAuthAction if (empty($this->target)) { $this->clientError( + // TRANS: Client error displayed when a target user could not be determined showing friendship. _('Could not find target user.'), 404 ); @@ -161,7 +159,6 @@ class ApiFriendshipsShowAction extends ApiBareAuthAction default: break; } - } /** @@ -178,5 +175,4 @@ class ApiFriendshipsShowAction extends ApiBareAuthAction { return true; } - } diff --git a/actions/apigroupcreate.php b/actions/apigroupcreate.php index 1608e030b8..54875a7188 100644 --- a/actions/apigroupcreate.php +++ b/actions/apigroupcreate.php @@ -66,9 +66,7 @@ class ApiGroupCreateAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -150,7 +148,6 @@ class ApiGroupCreateAction extends ApiAuthAction * * @return void */ - function validateParams() { $valid = Validate::string( @@ -218,7 +215,11 @@ class ApiGroupCreateAction extends ApiAuthAction } elseif (User_group::descriptionTooLong($this->description)) { $this->clientError( sprintf( - _('Description is too long (max %d chars).'), + // TRANS: Client error shown when providing too long a description during group creation. + // TRANS: %d is the maximum number of allowed characters. + _m('Description is too long (maximum %d character).', + 'Description is too long (maximum %d characters).', + User_group::maxDescription()), User_group::maxDescription() ), 403, @@ -229,6 +230,7 @@ class ApiGroupCreateAction extends ApiAuthAction !is_null($this->location) && mb_strlen($this->location) > 255) { $this->clientError( + // TRANS: Client error shown when providing too long a location during group creation. _('Location is too long (maximum 255 characters).'), 403, $this->format @@ -248,7 +250,11 @@ class ApiGroupCreateAction extends ApiAuthAction if (count($this->aliases) > common_config('group', 'maxaliases')) { $this->clientError( sprintf( - _('Too many aliases! Maximum %d.'), + // TRANS: Client error shown when providing too many aliases during group creation. + // TRANS: %d is the maximum number of allowed aliases. + _m('Too many aliases! Maximum %d allowed.', + 'Too many aliases! Maximum %d allowed.', + common_config('group', 'maxaliases')), common_config('group', 'maxaliases') ), 403, @@ -269,6 +275,8 @@ class ApiGroupCreateAction extends ApiAuthAction if (!$valid) { $this->clientError( + // TRANS: Client error shown when providing an invalid alias during group creation. + // TRANS: %s is the invalid alias. sprintf(_('Invalid alias: "%s".'), $alias), 403, $this->format @@ -278,6 +286,8 @@ class ApiGroupCreateAction extends ApiAuthAction if ($this->groupNicknameExists($alias)) { $this->clientError( sprintf( + // 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. _('Alias "%s" already in use. Try another one.'), $alias ), @@ -291,6 +301,7 @@ class ApiGroupCreateAction extends ApiAuthAction if (strcmp($alias, $this->nickname) == 0) { $this->clientError( + // TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. _('Alias can\'t be the same as nickname.'), 403, $this->format @@ -299,7 +310,7 @@ class ApiGroupCreateAction extends ApiAuthAction } } - // Evarything looks OK + // Everything looks OK return true; } @@ -311,7 +322,6 @@ class ApiGroupCreateAction extends ApiAuthAction * * @return boolean true or false */ - function groupNicknameExists($nickname) { $local = Local_group::staticGet('nickname', $nickname); @@ -328,5 +338,4 @@ class ApiGroupCreateAction extends ApiAuthAction return false; } - } diff --git a/actions/apigroupismember.php b/actions/apigroupismember.php index eaa4769f3e..8d31c65ddb 100644 --- a/actions/apigroupismember.php +++ b/actions/apigroupismember.php @@ -49,7 +49,6 @@ require_once INSTALLDIR . '/lib/apibareauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiGroupIsMemberAction extends ApiBareAuthAction { var $group = null; @@ -60,7 +59,6 @@ class ApiGroupIsMemberAction extends ApiBareAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ function prepare($args) @@ -82,17 +80,18 @@ class ApiGroupIsMemberAction extends ApiBareAuthAction * * @return void */ - function handle($args) { parent::handle($args); if (empty($this->user)) { + // TRANS: Client error displayed when checking group membership for a non-existing user. $this->clientError(_('No such user.'), 404, $this->format); return; } if (empty($this->group)) { + // TRANS: Client error displayed when checking group membership for a non-existing group. $this->clientError(_('Group not found.'), 404, $this->format); return false; } @@ -112,6 +111,7 @@ class ApiGroupIsMemberAction extends ApiBareAuthAction break; default: $this->clientError( + // TRANS: Client error displayed trying to execute an unknown API method showing group membership. _('API method not found.'), 400, $this->format @@ -129,10 +129,8 @@ class ApiGroupIsMemberAction extends ApiBareAuthAction * * @return boolean is read only action? */ - function isReadOnly($args) { return true; } - } diff --git a/actions/apigroupjoin.php b/actions/apigroupjoin.php index a0c069974b..345fed2215 100644 --- a/actions/apigroupjoin.php +++ b/actions/apigroupjoin.php @@ -49,7 +49,6 @@ require_once INSTALLDIR . '/lib/apiauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiGroupJoinAction extends ApiAuthAction { var $group = null; @@ -60,9 +59,7 @@ class ApiGroupJoinAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -82,7 +79,6 @@ class ApiGroupJoinAction extends ApiAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -98,17 +94,20 @@ class ApiGroupJoinAction extends ApiAuthAction } if (empty($this->user)) { + // TRANS: Client error displayed when trying to have a non-existing user join a group. $this->clientError(_('No such user.'), 404, $this->format); return; } if (empty($this->group)) { + // TRANS: Client error displayed when trying to join a group that does not exist. $this->clientError(_('Group not found.'), 404, $this->format); return false; } if ($this->user->isMember($this->group)) { $this->clientError( + // TRANS: Server error displayed when trying to join a group the user is already a member of. _('You are already a member of that group.'), 403, $this->format @@ -118,6 +117,7 @@ class ApiGroupJoinAction extends ApiAuthAction if (Group_block::isBlocked($this->group, $this->user->getProfile())) { $this->clientError( + // TRANS: Server error displayed when trying to join a group the user is blocked from joining. _('You have been blocked from that group by the admin.'), 403, $this->format @@ -137,6 +137,8 @@ class ApiGroupJoinAction extends ApiAuthAction common_log_db_error($member, 'INSERT', __FILE__); $this->serverError( sprintf( + // TRANS: Server error displayed when joining a group fails. + // TRANS: %1$s is a user nickname, $2$s is a group nickname. _('Could not join user %1$s to group %2$s.'), $this->user->nickname, $this->group->nickname @@ -154,6 +156,7 @@ class ApiGroupJoinAction extends ApiAuthAction break; default: $this->clientError( + // TRANS: Client error displayed trying to execute an unknown API method joining a group. _('API method not found.'), 404, $this->format @@ -161,5 +164,4 @@ class ApiGroupJoinAction extends ApiAuthAction break; } } - } diff --git a/actions/apigroupleave.php b/actions/apigroupleave.php index c838f6c878..0ceb3523c8 100644 --- a/actions/apigroupleave.php +++ b/actions/apigroupleave.php @@ -49,7 +49,6 @@ require_once INSTALLDIR . '/lib/apiauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiGroupLeaveAction extends ApiAuthAction { var $group = null; @@ -60,9 +59,7 @@ class ApiGroupLeaveAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -82,7 +79,6 @@ class ApiGroupLeaveAction extends ApiAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -98,11 +94,13 @@ class ApiGroupLeaveAction extends ApiAuthAction } if (empty($this->user)) { + // TRANS: Client error displayed when trying to have a non-existing user leave a group. $this->clientError(_('No such user.'), 404, $this->format); return; } if (empty($this->group)) { + // TRANS: Client error displayed when trying to leave a group that does not exist. $this->clientError(_('Group not found.'), 404, $this->format); return false; } @@ -113,6 +111,7 @@ class ApiGroupLeaveAction extends ApiAuthAction $member->profile_id = $this->auth_user->id; if (!$member->find(true)) { + // TRANS: Server error displayed when trying to leave a group the user is not a member of. $this->serverError(_('You are not a member of this group.')); return; } @@ -123,6 +122,8 @@ class ApiGroupLeaveAction extends ApiAuthAction common_log_db_error($member, 'DELETE', __FILE__); $this->serverError( sprintf( + // TRANS: Server error displayed when leaving a group fails. + // TRANS: %1$s is a user nickname, $2$s is a group nickname. _('Could not remove user %1$s from group %2$s.'), $this->user->nickname, $this->group->nickname @@ -140,6 +141,7 @@ class ApiGroupLeaveAction extends ApiAuthAction break; default: $this->clientError( + // TRANS: Client error displayed trying to execute an unknown API method leaving a group. _('API method not found.'), 404, $this->format @@ -147,5 +149,4 @@ class ApiGroupLeaveAction extends ApiAuthAction break; } } - } diff --git a/actions/apigrouplist.php b/actions/apigrouplist.php index 319a1e424d..1f6d44363f 100644 --- a/actions/apigrouplist.php +++ b/actions/apigrouplist.php @@ -49,7 +49,6 @@ require_once INSTALLDIR . '/lib/apibareauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiGroupListAction extends ApiBareAuthAction { var $groups = null; @@ -60,9 +59,7 @@ class ApiGroupListAction extends ApiBareAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -88,13 +85,12 @@ class ApiGroupListAction extends ApiBareAuthAction * * @return void */ - function handle($args) { parent::handle($args); $sitename = common_config('site', 'name'); - // TRANS: %s is a user name + // TRANS: Used as title in check for group membership. %s is a user name. $title = sprintf(_("%s's groups"), $this->user->nickname); $taguribase = TagURI::base(); $id = "tag:$taguribase:Groups"; @@ -104,8 +100,8 @@ class ApiGroupListAction extends ApiBareAuthAction ); $subtitle = sprintf( - // TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s - _("%1\$s groups %2\$s is a member of."), + // TRANS: Used as subtitle in check for group membership. %1$s is a user name, %2$s is the site name. + _('%1$s groups %2$s is a member of.'), $sitename, $this->user->nickname ); @@ -134,13 +130,13 @@ class ApiGroupListAction extends ApiBareAuthAction break; default: $this->clientError( + // TRANS: Client error displayed trying to execute an unknown API method checking group membership. _('API method not found.'), 404, $this->format ); break; } - } /** @@ -148,7 +144,6 @@ class ApiGroupListAction extends ApiBareAuthAction * * @return array groups */ - function getGroups() { $groups = array(); @@ -174,7 +169,6 @@ class ApiGroupListAction extends ApiBareAuthAction * * @return boolean true */ - function isReadOnly($args) { return true; @@ -203,7 +197,6 @@ class ApiGroupListAction extends ApiBareAuthAction * * @return string etag */ - function etag() { if (!empty($this->groups) && (count($this->groups) > 0)) { @@ -224,5 +217,4 @@ class ApiGroupListAction extends ApiBareAuthAction return null; } - } diff --git a/actions/apigrouplistall.php b/actions/apigrouplistall.php index cc7cd901dc..d05baa0992 100644 --- a/actions/apigrouplistall.php +++ b/actions/apigrouplistall.php @@ -49,7 +49,6 @@ require_once INSTALLDIR . '/lib/apiprivateauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiGroupListAllAction extends ApiPrivateAuthAction { var $groups = null; @@ -60,9 +59,7 @@ class ApiGroupListAllAction extends ApiPrivateAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -82,17 +79,17 @@ class ApiGroupListAllAction extends ApiPrivateAuthAction * * @return void */ - function handle($args) { parent::handle($args); $sitename = common_config('site', 'name'); - // TRANS: Message is used as a title. %s is a site name. + // TRANS: Message is used as a title when listing the lastest 20 groups. %s is a site name. $title = sprintf(_("%s groups"), $sitename); $taguribase = TagURI::base(); $id = "tag:$taguribase:Groups"; $link = common_local_url('groups'); + // TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. $subtitle = sprintf(_("groups on %s"), $sitename); switch($this->format) { @@ -119,13 +116,13 @@ class ApiGroupListAllAction extends ApiPrivateAuthAction break; default: $this->clientError( + // TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. _('API method not found.'), 404, $this->format ); break; } - } /** @@ -133,7 +130,6 @@ class ApiGroupListAllAction extends ApiPrivateAuthAction * * @return array groups */ - function getGroups() { $qry = 'SELECT user_group.* '. @@ -165,7 +161,6 @@ class ApiGroupListAllAction extends ApiPrivateAuthAction * * @return boolean true */ - function isReadOnly($args) { return true; @@ -176,7 +171,6 @@ class ApiGroupListAllAction extends ApiPrivateAuthAction * * @return string datestamp of the site's latest group */ - function lastModified() { if (!empty($this->groups) && (count($this->groups) > 0)) { @@ -194,7 +188,6 @@ class ApiGroupListAllAction extends ApiPrivateAuthAction * * @return string etag */ - function etag() { if (!empty($this->groups) && (count($this->groups) > 0)) { @@ -214,5 +207,4 @@ class ApiGroupListAllAction extends ApiPrivateAuthAction return null; } - } diff --git a/actions/apigroupmembership.php b/actions/apigroupmembership.php index b7f3064b5a..99ac965fa1 100644 --- a/actions/apigroupmembership.php +++ b/actions/apigroupmembership.php @@ -49,7 +49,6 @@ require_once INSTALLDIR . '/lib/apiprivateauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiGroupMembershipAction extends ApiPrivateAuthAction { var $group = null; @@ -61,9 +60,7 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -83,12 +80,12 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction * * @return void */ - function handle($args) { parent::handle($args); if (empty($this->group)) { + // TRANS: Client error displayed trying to show group membership on a non-existing group. $this->clientError(_('Group not found.'), 404, $this->format); return false; } @@ -104,6 +101,7 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction break; default: $this->clientError( + // TRANS: Client error displayed trying to execute an unknown API method showing group membership. _('API method not found.'), 404, $this->format @@ -117,7 +115,6 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction * * @return array $profiles list of profiles */ - function getProfiles() { $profiles = array(); @@ -143,7 +140,6 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction * * @return boolean true */ - function isReadOnly($args) { return true; @@ -154,7 +150,6 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction * * @return string datestamp of the lastest profile in the group */ - function lastModified() { if (!empty($this->profiles) && (count($this->profiles) > 0)) { @@ -173,7 +168,6 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction * * @return string etag */ - function etag() { if (!empty($this->profiles) && (count($this->profiles) > 0)) { @@ -194,5 +188,4 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction return null; } - } diff --git a/actions/apigroupshow.php b/actions/apigroupshow.php index 9b90e6b383..471aa141f9 100644 --- a/actions/apigroupshow.php +++ b/actions/apigroupshow.php @@ -50,7 +50,6 @@ require_once INSTALLDIR . '/lib/apiprivateauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiGroupShowAction extends ApiPrivateAuthAction { var $group = null; @@ -61,9 +60,7 @@ class ApiGroupShowAction extends ApiPrivateAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -80,6 +77,7 @@ class ApiGroupShowAction extends ApiPrivateAuthAction common_redirect(common_local_url('ApiGroupShow', $args), 301); } else { $this->clientError( + // TRANS: Client error displayed when trying to show a group that could not be found. _('Group not found.'), 404, $this->format @@ -100,7 +98,6 @@ class ApiGroupShowAction extends ApiPrivateAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -113,6 +110,7 @@ class ApiGroupShowAction extends ApiPrivateAuthAction $this->showSingleJsonGroup($this->group); break; default: + // TRANS: Client error displayed trying to execute an unknown API method showing a group. $this->clientError(_('API method not found.'), 404, $this->format); break; } @@ -123,7 +121,6 @@ class ApiGroupShowAction extends ApiPrivateAuthAction * * @return string datestamp of the latest notice in the stream */ - function lastModified() { if (!empty($this->group)) { @@ -141,7 +138,6 @@ class ApiGroupShowAction extends ApiPrivateAuthAction * * @return string etag */ - function etag() { if (!empty($this->group)) { @@ -169,10 +165,8 @@ class ApiGroupShowAction extends ApiPrivateAuthAction * * @return boolean is read only action? */ - function isReadOnly($args) { return true; } - } diff --git a/actions/apihelptest.php b/actions/apihelptest.php index d0e9e4926f..fbe5f12784 100644 --- a/actions/apihelptest.php +++ b/actions/apihelptest.php @@ -44,19 +44,15 @@ require_once INSTALLDIR . '/lib/apiprivateauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiHelpTestAction extends ApiPrivateAuthAction { - /** * Take arguments for running * * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -70,7 +66,6 @@ class ApiHelpTestAction extends ApiPrivateAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -85,6 +80,7 @@ class ApiHelpTestAction extends ApiPrivateAuthAction $this->endDocument('json'); } else { $this->clientError( + // TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. _('API method not found.'), 404, $this->format @@ -101,11 +97,8 @@ class ApiHelpTestAction extends ApiPrivateAuthAction * * @return boolean is read only action? */ - function isReadOnly($args) { return true; } - } - diff --git a/actions/apimediaupload.php b/actions/apimediaupload.php index a33771caea..0b08dbedf1 100644 --- a/actions/apimediaupload.php +++ b/actions/apimediaupload.php @@ -43,7 +43,6 @@ require_once INSTALLDIR . '/lib/mediafile.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiMediaUploadAction extends ApiAuthAction { /** @@ -57,7 +56,6 @@ class ApiMediaUploadAction extends ApiAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -99,6 +97,7 @@ class ApiMediaUploadAction extends ApiAuthAction if (isset($upload)) { $this->showResponse($upload); } else { + // TRANS: Client error displayed when uploading a media file has failed. $this->clientError(_('Upload failed.')); return; } @@ -126,7 +125,6 @@ class ApiMediaUploadAction extends ApiAuthAction * Overrided clientError to show a more Twitpic-like error * * @param String $msg an error message - * */ function clientError($msg) { @@ -140,5 +138,4 @@ class ApiMediaUploadAction extends ApiAuthAction $this->elementEnd('rsp'); $this->endDocument(); } - } diff --git a/actions/apioauthaccesstoken.php b/actions/apioauthaccesstoken.php index f66e4af1ea..064d05120f 100644 --- a/actions/apioauthaccesstoken.php +++ b/actions/apioauthaccesstoken.php @@ -79,7 +79,6 @@ class ApiOauthAccessTokenAction extends ApiOauthAction $app = $datastore->getAppByRequestToken($this->reqToken); $atok = $server->fetch_access_token($req); - } catch (Exception $e) { common_log(LOG_WARNING, 'API OAuthException - ' . $e->getMessage()); common_debug(var_export($req, true)); @@ -88,7 +87,6 @@ class ApiOauthAccessTokenAction extends ApiOauthAction } if (empty($atok)) { - // Token exchange failed -- log it $msg = sprintf( @@ -101,7 +99,6 @@ class ApiOauthAccessTokenAction extends ApiOauthAction common_log(LOG_WARNING, $msg); // TRANS: Client error given from the OAuth API when the request token or verifier is invalid. $this->clientError(_("Invalid request token or verifier.", 400, 'text')); - } else { common_log( LOG_INFO, @@ -121,7 +118,6 @@ class ApiOauthAccessTokenAction extends ApiOauthAction * * @param OAuthToken token the access token */ - function showAccessToken($token) { header('Content-Type: application/x-www-form-urlencoded'); diff --git a/actions/apioauthauthorize.php b/actions/apioauthauthorize.php index 2b8ea84c7d..b2c0de719a 100644 --- a/actions/apioauthauthorize.php +++ b/actions/apioauthauthorize.php @@ -58,7 +58,6 @@ class ApiOauthAuthorizeAction extends Action * * @return boolean false */ - function isReadOnly($args) { return false; @@ -144,6 +143,7 @@ class ApiOauthAuthorizeAction extends Action if (!$token || $token != common_session_token()) { $this->showForm( + // TRANS: Form validation error in API OAuth authorisation because of an invalid session token. _('There was a problem with your session token. Try again, please.')); return; } @@ -177,7 +177,6 @@ class ApiOauthAuthorizeAction extends Action assert(!empty($this->reqToken)); if ($this->arg('allow')) { - // mark the req token as authorized try { $this->store->authorize_token($this->oauthTokenParam); @@ -250,9 +249,7 @@ class ApiOauthAuthorizeAction extends Action // Otherwise, inform the user that the rt was authorized $this->showAuthorized(); - } else if ($this->arg('cancel')) { - common_log( LOG_INFO, sprintf( @@ -421,16 +418,18 @@ class ApiOauthAuthorizeAction extends Action $access = ($this->app->access_type & Oauth_application::$writeAccess) ? 'access and update' : 'access'; - // 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. if ($this->app->name == 'anonymous') { - // Special message for the anonymous app and consumer + // Special message for the anonymous app and consumer. + // TRANS: User notification of external application requesting account access. + // TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. $msg = _('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.'); } else { + // 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. $msg = _('The application %1$s by ' . '%2$s would like the ability ' . 'to %3$s your %4$s account data. ' . @@ -612,19 +611,36 @@ class ApiOauthAuthorizeAction extends Action */ function showAuthorized() { - $title = sprintf( - // TRANS: Header of user notification after authorising an application access to a profile. - // TRANS: %s is the authorised application name. - _('You have successfully authorized %s.'), - ($this->app->name == 'anonymous') ? 'the application' : $this->app->name - ); + $title = null; + $msg = null; - $msg = sprintf( - // TRANS: Uer notification after authorising an application access to a profile. - // TRANS: %s is the authorised application name. - _('Please return to %s and enter the following security code to complete the process.'), - ($this->app->name == 'anonymous') ? 'the application' : $this->app->name - ); + if ($this->app->name == 'anonymous') { + + $title = + // TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. + _('You have successfully authorized the application'); + + $msg = + // TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. + _('Please return to the application and enter the following security code to complete the process.'); + + } else { + + $title = sprintf( + // 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. + _('You have successfully authorized %s'), + $this->app->name + ); + + $msg = sprintf( + // 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. + _('Please return to %s and enter the following security code to complete the process.'), + $this->app->name + ); + + } if ($this->reqToken->verified_callback == 'oob') { $pin = new ApiOauthPinAction( @@ -635,7 +651,6 @@ class ApiOauthAuthorizeAction extends Action ); $pin->showPage(); } else { - // NOTE: This would only happen if an application registered as // a web application but sent in 'oob' for the oauth_callback // parameter. Usually web apps will send in a callback and @@ -676,7 +691,6 @@ class ApiOauthAuthorizeAction extends Action $callback = $this->app->callback_url; } - } return $callback; diff --git a/actions/apioauthpin.php b/actions/apioauthpin.php index 64baf260d1..22fb95adb5 100644 --- a/actions/apioauthpin.php +++ b/actions/apioauthpin.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiOauthPinAction extends InfoAction { function __construct($title, $message, $verifier, $desktopMode = false) @@ -96,6 +95,70 @@ class ApiOauthPinAction extends InfoAction $this->elementEnd('body'); } + /** + * A local menu + * + * Shows different login/register actions. + * + * @return void + */ + function showLocalNav() + { + // NOP + } + + /* + * Override - suppress output in "desktop" mode + */ + function showHeader() + { + if ($this->desktopMode == false) { + parent::showHeader(); + } + } + + /* + * Override - suppress output in "desktop" mode + */ + function showAside() + { + if ($this->desktopMode == false) { + parent::showAside(); + } + } + + /* + * Override - suppress output in "desktop" mode + */ + function showFooter() + { + if ($this->desktopMode == false) { + parent::showFooter(); + } + } + + /** + * Show site notice. + * + * @return nothing + */ + function showSiteNotice() + { + // NOP + } + + /** + * Show notice form. + * + * Show the form for posting a new notice + * + * @return nothing + */ + function showNoticeForm() + { + // NOP + } + /** * Display content. * diff --git a/actions/apioauthrequesttoken.php b/actions/apioauthrequesttoken.php index 3765671256..31e6387462 100644 --- a/actions/apioauthrequesttoken.php +++ b/actions/apioauthrequesttoken.php @@ -42,7 +42,6 @@ require_once INSTALLDIR . '/lib/apioauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiOauthRequestTokenAction extends ApiOauthAction { /** @@ -51,9 +50,7 @@ class ApiOauthRequestTokenAction extends ApiOauthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -74,7 +71,6 @@ class ApiOauthRequestTokenAction extends ApiOauthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -127,7 +123,6 @@ class ApiOauthRequestTokenAction extends ApiOauthAction /* * Display temporary OAuth credentials */ - function showRequestToken($token) { header('Content-Type: application/x-www-form-urlencoded'); @@ -142,7 +137,6 @@ class ApiOauthRequestTokenAction extends ApiOauthAction * * @return boolean true or false */ - function verifyCallback($callback) { if ($callback == "oob") { @@ -157,5 +151,4 @@ class ApiOauthRequestTokenAction extends ApiOauthAction return Validate::uri($callback); } } - } diff --git a/actions/apisearchatom.php b/actions/apisearchatom.php index 60bb8b0408..6743e92c84 100644 --- a/actions/apisearchatom.php +++ b/actions/apisearchatom.php @@ -48,10 +48,8 @@ require_once INSTALLDIR.'/lib/apiprivateauth.php'; * * @see ApiPrivateAuthAction */ - class ApiSearchAtomAction extends ApiPrivateAuthAction { - var $cnt; var $query; var $lang; @@ -70,7 +68,6 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction * * @see Action::__construct */ - function __construct($output='php://output', $indent=null) { parent::__construct($output, $indent); @@ -81,7 +78,6 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction * * @return boolean true */ - function isReadonly() { return true; @@ -93,16 +89,13 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction * @param array $args Arguments from $_REQUEST * * @return boolean success - * */ - function prepare($args) { common_debug("in apisearchatom prepare()"); parent::prepare($args); - $this->query = $this->trimmed('q'); $this->lang = $this->trimmed('lang'); $this->rpp = $this->trimmed('rpp'); @@ -139,7 +132,6 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -154,7 +146,6 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction * * @return array an array of Notice objects sorted in reverse chron */ - function getNotices() { // TODO: Support search operators like from: and to:, boolean, etc. @@ -180,7 +171,6 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction if ($this->cnt > 0) { while ($notice->fetch()) { - ++$cnt; if (!$this->max_id) { @@ -203,7 +193,6 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction * * @return void */ - function showAtom() { $notices = $this->getNotices(); @@ -212,7 +201,6 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction $this->showFeed(); foreach ($notices as $n) { - $profile = $n->getProfile(); // Don't show notices from deleted users @@ -230,7 +218,6 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction * * @return void */ - function showFeed() { // TODO: A9 OpenSearch stuff like search.twitter.com? @@ -278,6 +265,7 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction 'rel' => 'self', 'href' => $self_uri)); + // @todo Needs i18n? $this->element('title', null, "$this->query - $sitename Search"); $this->element('updated', null, common_date_iso8601('now')); @@ -313,7 +301,6 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction 'rel' => 'previous', 'href' => $previous_uri)); } - } /** @@ -324,7 +311,6 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction * * @return void */ - function showEntry($notice) { $server = common_config('site', 'server'); @@ -356,10 +342,10 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction if ($ns) { if (!empty($ns->name) && !empty($ns->url)) { $source = '' - . htmlspecialchars($ns->name) - . ''; + . htmlspecialchars($ns->url) + . '" rel="nofollow">' + . htmlspecialchars($ns->name) + . ''; } else { $source = $ns->code; } @@ -372,6 +358,7 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction $name = $profile->nickname; if ($profile->fullname) { + // @todo Needs proper i18n? $name .= ' (' . $profile->fullname . ')'; } @@ -387,7 +374,6 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction * * @return void */ - function initAtom() { header('Content-Type: application/atom+xml; charset=utf-8'); @@ -399,10 +385,8 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction * * @return void */ - function endAtom() { $this->elementEnd('feed'); } - } diff --git a/actions/apisearchjson.php b/actions/apisearchjson.php index e44634684d..38e612ee39 100644 --- a/actions/apisearchjson.php +++ b/actions/apisearchjson.php @@ -44,7 +44,6 @@ require_once INSTALLDIR.'/lib/jsonsearchresultslist.php'; * @link http://status.net/ * @see ApiAction */ - class ApiSearchJSONAction extends ApiPrivateAuthAction { var $query; @@ -62,7 +61,6 @@ class ApiSearchJSONAction extends ApiPrivateAuthAction * * @return boolean true if nothing goes wrong */ - function prepare($args) { common_debug("apisearchjson prepare()"); @@ -100,7 +98,6 @@ class ApiSearchJSONAction extends ApiPrivateAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -112,10 +109,8 @@ class ApiSearchJSONAction extends ApiPrivateAuthAction * * @return void */ - function showResults() { - // TODO: Support search operators like from: and to:, boolean, etc. $notice = new Notice(); @@ -146,7 +141,6 @@ class ApiSearchJSONAction extends ApiPrivateAuthAction * * @return boolean true */ - function isReadOnly($args) { return true; diff --git a/actions/apistatusesdestroy.php b/actions/apistatusesdestroy.php index 485eae66ea..d73e574b3c 100644 --- a/actions/apistatusesdestroy.php +++ b/actions/apistatusesdestroy.php @@ -55,7 +55,6 @@ require_once INSTALLDIR . '/lib/apiauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiStatusesDestroyAction extends ApiAuthAction { var $status = null; @@ -66,9 +65,7 @@ class ApiStatusesDestroyAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -94,13 +91,13 @@ class ApiStatusesDestroyAction extends ApiAuthAction * * @return void */ - function handle($args) { parent::handle($args); if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( + // TRANS: Client error displayed trying to execute an unknown API method deleting a status. _('API method not found.'), 404 ); @@ -109,6 +106,8 @@ class ApiStatusesDestroyAction extends ApiAuthAction if (!in_array($_SERVER['REQUEST_METHOD'], array('POST', 'DELETE'))) { $this->clientError( + // TRANS: Client error displayed trying to delete a status not using POST or DELETE. + // TRANS: POST and DELETE should not be translated. _('This method requires a POST or DELETE.'), 400, $this->format @@ -118,6 +117,7 @@ class ApiStatusesDestroyAction extends ApiAuthAction if (empty($this->notice)) { $this->clientError( + // TRANS: Client error displayed trying to delete a status with an invalid ID. _('No status found with that ID.'), 404, $this->format ); @@ -132,6 +132,7 @@ class ApiStatusesDestroyAction extends ApiAuthAction $this->showNotice(); } else { $this->clientError( + // TRANS: Client error displayed trying to delete a status of another user. _('You may not delete another user\'s status.'), 403, $this->format @@ -144,7 +145,6 @@ class ApiStatusesDestroyAction extends ApiAuthAction * * @return void */ - function showNotice() { if (!empty($this->notice)) { @@ -155,5 +155,4 @@ class ApiStatusesDestroyAction extends ApiAuthAction } } } - } diff --git a/actions/apistatusesretweet.php b/actions/apistatusesretweet.php index aae98f6378..ecc4a3f033 100644 --- a/actions/apistatusesretweet.php +++ b/actions/apistatusesretweet.php @@ -43,7 +43,6 @@ require_once INSTALLDIR . '/lib/mediafile.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiStatusesRetweetAction extends ApiAuthAction { var $original = null; @@ -54,9 +53,7 @@ class ApiStatusesRetweetAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -73,6 +70,7 @@ class ApiStatusesRetweetAction extends ApiAuthAction $this->original = Notice::staticGet('id', $id); if (empty($this->original)) { + // TRANS: Client error displayed trying to repeat a non-existing notice through the API. $this->clientError(_('No such notice.'), 400, $this->format); return false; @@ -81,6 +79,7 @@ class ApiStatusesRetweetAction extends ApiAuthAction $this->user = $this->auth_user; if ($this->user->id == $this->original->profile_id) { + // TRANS: Client error displayed trying to repeat an own notice through the API. $this->clientError(_('Cannot repeat your own notice.'), 400, $this->format); return false; @@ -89,6 +88,7 @@ class ApiStatusesRetweetAction extends ApiAuthAction $profile = $this->user->getProfile(); if ($profile->hasRepeated($id)) { + // TRANS: Client error displayed trying to re-repeat a notice through the API. $this->clientError(_('Already repeated that notice.'), 400, $this->format); return false; @@ -106,15 +106,12 @@ class ApiStatusesRetweetAction extends ApiAuthAction * * @return void */ - function handle($args) { parent::handle($args); $repeat = $this->original->repeat($this->user->id, $this->source); - - $this->showNotice($repeat); } @@ -123,7 +120,6 @@ class ApiStatusesRetweetAction extends ApiAuthAction * * @return void */ - function showNotice($notice) { if (!empty($notice)) { diff --git a/actions/apistatusesretweets.php b/actions/apistatusesretweets.php index a79d43168e..cc7caee19d 100644 --- a/actions/apistatusesretweets.php +++ b/actions/apistatusesretweets.php @@ -43,7 +43,6 @@ require_once INSTALLDIR . '/lib/mediafile.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiStatusesRetweetsAction extends ApiAuthAction { const MAXCOUNT = 100; @@ -57,9 +56,7 @@ class ApiStatusesRetweetsAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -69,6 +66,7 @@ class ApiStatusesRetweetsAction extends ApiAuthAction $this->original = Notice::staticGet('id', $id); if (empty($this->original)) { + // TRANS: Client error displayed trying to display redents of a non-exiting notice. $this->clientError(_('No such notice.'), 400, $this->format); return false; @@ -94,7 +92,6 @@ class ApiStatusesRetweetsAction extends ApiAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -109,6 +106,7 @@ class ApiStatusesRetweetsAction extends ApiAuthAction $this->showJsonTimeline($strm); break; default: + // TRANS: Client error displayed when trying to handle an unknown API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apistatusesshow.php b/actions/apistatusesshow.php index 84f8079db5..a98e45f79c 100644 --- a/actions/apistatusesshow.php +++ b/actions/apistatusesshow.php @@ -55,10 +55,8 @@ require_once INSTALLDIR . '/lib/apiprivateauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiStatusesShowAction extends ApiPrivateAuthAction { - var $notice_id = null; var $notice = null; @@ -68,9 +66,7 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -100,12 +96,12 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction * * @return void */ - function handle($args) { parent::handle($args); if (!in_array($this->format, array('xml', 'json'))) { + // TRANS: Client error displayed when trying to handle an unknown API method. $this->clientError(_('API method not found.'), $code = 404); return; } @@ -118,7 +114,6 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction * * @return void */ - function showNotice() { if (!empty($this->notice)) { @@ -128,7 +123,6 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction $this->show_single_json_status($this->notice); } } else { - // XXX: Twitter just sets a 404 header and doens't bother // to return an err msg @@ -136,12 +130,14 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction if (!empty($deleted)) { $this->clientError( + // TRANS: Client error displayed requesting a deleted status. _('Status deleted.'), 410, $this->format ); } else { $this->clientError( + // TRANS: Client error displayed requesting a status with an invalid ID. _('No status with that ID found.'), 404, $this->format @@ -157,7 +153,6 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction * * @return boolean true */ - function isReadOnly($args) { return true; @@ -168,7 +163,6 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction * * @return string datestamp of the latest notice in the stream */ - function lastModified() { if (!empty($this->notice)) { @@ -186,7 +180,6 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction * * @return string etag */ - function etag() { if (!empty($this->notice)) { @@ -204,5 +197,4 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction return null; } - } diff --git a/actions/apistatusesupdate.php b/actions/apistatusesupdate.php index 822ebacbdd..666ed9fa32 100644 --- a/actions/apistatusesupdate.php +++ b/actions/apistatusesupdate.php @@ -160,7 +160,6 @@ class ApiStatusesUpdateAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ function prepare($args) { @@ -227,6 +226,7 @@ class ApiStatusesUpdateAction extends ApiAuthAction } if (empty($this->auth_user)) { + // TRANS: Client error displayed when updating a status for a non-existing user. $this->clientError(_('No such user.'), 404, $this->format); return; } @@ -234,7 +234,6 @@ class ApiStatusesUpdateAction extends ApiAuthAction $status_shortened = common_shorten_links($this->status); if (Notice::contentTooLong($status_shortened)) { - // Note: Twitter truncates anything over 140, flags the status // as "truncated." @@ -304,6 +303,8 @@ class ApiStatusesUpdateAction extends ApiAuthAction if (Notice::contentTooLong($status_shortened)) { $upload->delete(); + // TRANS: Client error displayed exceeding the maximum notice length. + // TRANS: %d is the maximum lenth for a notice. $msg = _m('Maximum notice size is %d character, including attachment URL.', 'Maximum notice size is %d characters, including attachment URL.', Notice::maxContent()); diff --git a/actions/apistatusnetconfig.php b/actions/apistatusnetconfig.php index 76d37ea97f..771a95baec 100644 --- a/actions/apistatusnetconfig.php +++ b/actions/apistatusnetconfig.php @@ -46,7 +46,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiStatusnetConfigAction extends ApiAction { var $keys = array( @@ -69,9 +68,7 @@ class ApiStatusnetConfigAction extends ApiAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -85,7 +82,6 @@ class ApiStatusnetConfigAction extends ApiAction * * @return void */ - function handle($args) { parent::handle($args); @@ -138,6 +134,7 @@ class ApiStatusnetConfigAction extends ApiAction break; default: $this->clientError( + // TRANS: Client error displayed when trying to handle an unknown API method. _('API method not found.'), 404, $this->format @@ -155,11 +152,8 @@ class ApiStatusnetConfigAction extends ApiAction * * @return boolean is read only action? */ - function isReadOnly($args) { return true; } - } - diff --git a/actions/apistatusnetversion.php b/actions/apistatusnetversion.php index d094807597..bc2babc3f2 100644 --- a/actions/apistatusnetversion.php +++ b/actions/apistatusnetversion.php @@ -47,7 +47,6 @@ require_once INSTALLDIR . '/lib/apiprivateauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiStatusnetVersionAction extends ApiPrivateAuthAction { /** @@ -58,7 +57,6 @@ class ApiStatusnetVersionAction extends ApiPrivateAuthAction * @return boolean success flag * */ - function prepare($args) { parent::prepare($args); @@ -72,7 +70,6 @@ class ApiStatusnetVersionAction extends ApiPrivateAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -90,6 +87,7 @@ class ApiStatusnetVersionAction extends ApiPrivateAuthAction break; default: $this->clientError( + // TRANS: Client error displayed when trying to handle an unknown API method. _('API method not found.'), 404, $this->format @@ -107,11 +105,8 @@ class ApiStatusnetVersionAction extends ApiPrivateAuthAction * * @return boolean is read only action? */ - function isReadOnly($args) { return true; } - } - diff --git a/actions/apisubscriptions.php b/actions/apisubscriptions.php index 749d16f067..fc0a2638b6 100644 --- a/actions/apisubscriptions.php +++ b/actions/apisubscriptions.php @@ -48,7 +48,6 @@ require_once INSTALLDIR . '/lib/apibareauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiSubscriptionsAction extends ApiBareAuthAction { var $profiles = null; @@ -62,9 +61,7 @@ class ApiSubscriptionsAction extends ApiBareAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -84,6 +81,7 @@ class ApiSubscriptionsAction extends ApiBareAuthAction $this->user = $this->getTargetUser($this->arg('id')); if (empty($this->user)) { + // TRANS: Client error displayed when requesting a list of followers for a non-existing user. $this->clientError(_('No such user.'), 404, $this->format); return false; } @@ -102,12 +100,12 @@ class ApiSubscriptionsAction extends ApiBareAuthAction * * @return void */ - function handle($args) { parent::handle($args); if (!in_array($this->format, array('xml', 'json'))) { + // TRANS: Client error displayed when trying to handle an unknown API method. $this->clientError(_('API method not found.'), $code = 404); return; } @@ -128,7 +126,6 @@ class ApiSubscriptionsAction extends ApiBareAuthAction * * @return array Profiles */ - function getProfiles() { } @@ -140,7 +137,6 @@ class ApiSubscriptionsAction extends ApiBareAuthAction * * @return boolean true */ - function isReadOnly($args) { return true; @@ -151,7 +147,6 @@ class ApiSubscriptionsAction extends ApiBareAuthAction * * @return string datestamp of the latest profile in the stream */ - function lastModified() { if (!empty($this->profiles) && (count($this->profiles) > 0)) { @@ -171,7 +166,6 @@ class ApiSubscriptionsAction extends ApiBareAuthAction * * @return string etag */ - function etag() { if (!empty($this->profiles) && (count($this->profiles) > 0)) { @@ -184,6 +178,7 @@ class ApiSubscriptionsAction extends ApiBareAuthAction common_user_cache_hash($this->auth_user), common_language(), $this->user->id, + // Caching tags. isset($this->ids_only) ? 'IDs' : 'Profiles', strtotime($this->profiles[0]->created), strtotime($this->profiles[$last]->created)) @@ -202,7 +197,6 @@ class ApiSubscriptionsAction extends ApiBareAuthAction * * @return void */ - function showProfiles($include_statuses = true) { switch ($this->format) { @@ -230,6 +224,7 @@ class ApiSubscriptionsAction extends ApiBareAuthAction print json_encode($arrays); break; default: + // TRANS: Client error displayed when requesting profiles of followers in an unsupported format. $this->clientError(_('Unsupported format.')); break; } @@ -241,7 +236,6 @@ class ApiSubscriptionsAction extends ApiBareAuthAction * * @return void */ - function showIds() { switch ($this->format) { @@ -260,9 +254,9 @@ class ApiSubscriptionsAction extends ApiBareAuthAction print json_encode($ids); break; default: + // TRANS: Client error displayed when requesting IDs of followers in an unsupported format. $this->clientError(_('Unsupported format.')); break; } } - } diff --git a/actions/apitimelinefavorites.php b/actions/apitimelinefavorites.php index f5ce5d2fd4..c952c46238 100644 --- a/actions/apitimelinefavorites.php +++ b/actions/apitimelinefavorites.php @@ -48,7 +48,6 @@ require_once INSTALLDIR.'/lib/apibareauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiTimelineFavoritesAction extends ApiBareAuthAction { var $notices = null; @@ -59,9 +58,7 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -69,6 +66,7 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction $this->user = $this->getTargetUser($this->arg('id')); if (empty($this->user)) { + // TRANS: Client error displayed when requesting most recent favourite notices by a user for a non-existing user. $this->clientError(_('No such user.'), 404, $this->format); return; } @@ -87,7 +85,6 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -99,7 +96,6 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction * * @return void */ - function showTimeline() { $profile = $this->user->getProfile(); @@ -107,6 +103,8 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction $sitename = common_config('site', 'name'); $title = sprintf( + // 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. _('%1$s / Favorites from %2$s'), $sitename, $this->user->nickname @@ -116,7 +114,10 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction $id = "tag:$taguribase:Favorites:" . $this->user->id; $subtitle = sprintf( - _('%1$s updates favorited by %2$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. + _('%1$s updates favorited by %2$s / %3$s.'), $sitename, $profile->getBestName(), $this->user->nickname @@ -148,7 +149,6 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction ); break; case 'atom': - header('Content-Type: application/atom+xml; charset=utf-8'); $atom = new AtomNoticeFeed($this->auth_user); @@ -165,12 +165,12 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction $atom->addEntryFromNotices($this->notices); $this->raw($atom->getString()); - break; case 'json': $this->showJsonTimeline($this->notices); break; default: + // TRANS: Client error displayed when trying to handle an unknown API method. $this->clientError(_('API method not found.'), $code = 404); break; } @@ -181,7 +181,6 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction * * @return array notices */ - function getNotices() { $notices = array(); @@ -220,7 +219,6 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction * * @return boolean true */ - function isReadOnly($args) { return true; @@ -231,7 +229,6 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction * * @return string datestamp of the latest notice in the stream */ - function lastModified() { if (!empty($this->notices) && (count($this->notices) > 0)) { @@ -249,7 +246,6 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction * * @return string etag */ - function etag() { if (!empty($this->notices) && (count($this->notices) > 0)) { @@ -270,5 +266,4 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction return null; } - } diff --git a/actions/apitimelinefriends.php b/actions/apitimelinefriends.php index c96391c129..71049f6eb1 100644 --- a/actions/apitimelinefriends.php +++ b/actions/apitimelinefriends.php @@ -151,7 +151,6 @@ require_once INSTALLDIR . '/lib/apibareauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiTimelineFriendsAction extends ApiBareAuthAction { var $notices = null; @@ -164,13 +163,13 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction * @return boolean success flag * */ - function prepare($args) { parent::prepare($args); $this->user = $this->getTargetUser($this->arg('id')); if (empty($this->user)) { + // TRANS: Client error displayed when requesting dents of a user and friends for a user that does not exist. $this->clientError(_('No such user.'), 404, $this->format); return; } @@ -189,7 +188,6 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -201,7 +199,6 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction * * @return void */ - function showTimeline() { $profile = $this->user->getProfile(); @@ -246,7 +243,6 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction ); break; case 'atom': - header('Content-Type: application/atom+xml; charset=utf-8'); $atom = new AtomNoticeFeed($this->auth_user); @@ -268,6 +264,7 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction $this->showJsonTimeline($this->notices); break; default: + // TRANS: Client error displayed when trying to handle an unknown API method. $this->clientError(_('API method not found.'), $code = 404); break; } @@ -278,7 +275,6 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction * * @return array notices */ - function getNotices() { $notices = array(); @@ -307,7 +303,6 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction * * @return boolean true */ - function isReadOnly($args) { return true; @@ -318,7 +313,6 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction * * @return string datestamp of the latest notice in the stream */ - function lastModified() { if (!empty($this->notices) && (count($this->notices) > 0)) { @@ -336,11 +330,9 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction * * @return string etag */ - function etag() { if (!empty($this->notices) && (count($this->notices) > 0)) { - $last = count($this->notices) - 1; return '"' . implode( @@ -357,5 +349,4 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction return null; } - } diff --git a/actions/apitimelinegroup.php b/actions/apitimelinegroup.php index 5138a4b5e1..a85da4b0f3 100644 --- a/actions/apitimelinegroup.php +++ b/actions/apitimelinegroup.php @@ -49,10 +49,8 @@ require_once INSTALLDIR . '/lib/apiprivateauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiTimelineGroupAction extends ApiPrivateAuthAction { - var $group = null; var $notices = null; @@ -64,7 +62,6 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction * @return boolean success flag * */ - function prepare($args) { parent::prepare($args); @@ -83,12 +80,12 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction * * @return void */ - function handle($args) { parent::handle($args); if (empty($this->group)) { + // TRANS: Client error displayed requesting most recent notices to a group for a non-existing group. $this->clientError(_('Group not found.'), 404, $this->format); return false; } @@ -102,7 +99,6 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction * * @return void */ - function showTimeline() { // We'll pull common formatting out of this for other formats @@ -126,7 +122,6 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction ); break; case 'atom': - header('Content-Type: application/atom+xml; charset=utf-8'); try { @@ -138,19 +133,21 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction $this->raw($atom->getString()); } catch (Atom10FeedException $e) { $this->serverError( - 'Could not generate feed for group - ' . $e->getMessage(), + // TRANS: Server error displayed when generating an Atom feed fails. + // TRANS: %s is the error. + sprintf(_('Could not generate feed for group - %s'),$e->getMessage()), 400, $this->format ); return; } - break; case 'json': $this->showJsonTimeline($this->notices); break; default: $this->clientError( + // TRANS: Client error displayed when trying to handle an unknown API method. _('API method not found.'), 404, $this->format @@ -164,7 +161,6 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction * * @return array notices */ - function getNotices() { $notices = array(); @@ -190,7 +186,6 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction * * @return boolean true */ - function isReadOnly($args) { return true; @@ -201,7 +196,6 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction * * @return string datestamp of the latest notice in the stream */ - function lastModified() { if (!empty($this->notices) && (count($this->notices) > 0)) { @@ -219,7 +213,6 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction * * @return string etag */ - function etag() { if (!empty($this->notices) && (count($this->notices) > 0)) { @@ -240,5 +233,4 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction return null; } - } diff --git a/actions/apitimelinehome.php b/actions/apitimelinehome.php index 1ceb3d902b..75a9f72580 100644 --- a/actions/apitimelinehome.php +++ b/actions/apitimelinehome.php @@ -56,7 +56,6 @@ require_once INSTALLDIR . '/lib/apibareauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiTimelineHomeAction extends ApiBareAuthAction { var $notices = null; @@ -67,9 +66,7 @@ class ApiTimelineHomeAction extends ApiBareAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -77,6 +74,7 @@ class ApiTimelineHomeAction extends ApiBareAuthAction $this->user = $this->getTargetUser($this->arg('id')); if (empty($this->user)) { + // TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. $this->clientError(_('No such user.'), 404, $this->format); return; } @@ -95,7 +93,6 @@ class ApiTimelineHomeAction extends ApiBareAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -107,12 +104,12 @@ class ApiTimelineHomeAction extends ApiBareAuthAction * * @return void */ - function showTimeline() { $profile = $this->user->getProfile(); $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); $sitename = common_config('site', 'name'); + // TRANS: Timeline title for user and friends. %s is a user nickname. $title = sprintf(_("%s and friends"), $this->user->nickname); $taguribase = TagURI::base(); $id = "tag:$taguribase:HomeTimeline:" . $this->user->id; @@ -172,6 +169,7 @@ class ApiTimelineHomeAction extends ApiBareAuthAction $this->showJsonTimeline($this->notices); break; default: + // TRANS: Client error displayed when trying to handle an unknown API method. $this->clientError(_('API method not found.'), $code = 404); break; } @@ -182,7 +180,6 @@ class ApiTimelineHomeAction extends ApiBareAuthAction * * @return array notices */ - function getNotices() { $notices = array(); @@ -215,7 +212,6 @@ class ApiTimelineHomeAction extends ApiBareAuthAction * * @return boolean true */ - function isReadOnly($args) { return true; @@ -226,7 +222,6 @@ class ApiTimelineHomeAction extends ApiBareAuthAction * * @return string datestamp of the latest notice in the stream */ - function lastModified() { if (!empty($this->notices) && (count($this->notices) > 0)) { @@ -244,7 +239,6 @@ class ApiTimelineHomeAction extends ApiBareAuthAction * * @return string etag */ - function etag() { if (!empty($this->notices) && (count($this->notices) > 0)) { @@ -265,5 +259,4 @@ class ApiTimelineHomeAction extends ApiBareAuthAction return null; } - } diff --git a/actions/apitimelinementions.php b/actions/apitimelinementions.php index 354dc58b68..a9b6d0b3df 100644 --- a/actions/apitimelinementions.php +++ b/actions/apitimelinementions.php @@ -55,10 +55,8 @@ require_once INSTALLDIR . '/lib/apibareauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiTimelineMentionsAction extends ApiBareAuthAction { - var $notices = null; /** @@ -67,9 +65,7 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -77,6 +73,7 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction $this->user = $this->getTargetUser($this->arg('id')); if (empty($this->user)) { + // TRANS: Client error displayed when requesting most recent mentions for a non-existing user. $this->clientError(_('No such user.'), 404, $this->format); return; } @@ -95,7 +92,6 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -107,7 +103,6 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction * * @return void */ - function showTimeline() { $profile = $this->user->getProfile(); @@ -115,6 +110,8 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction $sitename = common_config('site', 'name'); $title = sprintf( + // TRANS: Title for timeline of most recent mentions of a user. + // TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname. _('%1$s / Updates mentioning %2$s'), $sitename, $this->user->nickname ); @@ -128,6 +125,9 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction $self = $this->getSelfUri(); $subtitle = sprintf( + // 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. _('%1$s updates that reply to updates from %2$s / %3$s.'), $sitename, $this->user->nickname, $profile->getBestName() ); @@ -149,7 +149,6 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction ); break; case 'atom': - header('Content-Type: application/atom+xml; charset=utf-8'); $atom = new AtomNoticeFeed($this->auth_user); @@ -171,6 +170,7 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction $this->showJsonTimeline($this->notices); break; default: + // TRANS: Client error displayed when trying to handle an unknown API method. $this->clientError(_('API method not found.'), $code = 404); break; } @@ -181,7 +181,6 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction * * @return array notices */ - function getNotices() { $notices = array(); @@ -205,7 +204,6 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction * * @return boolean true */ - function isReadOnly($args) { return true; @@ -216,7 +214,6 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction * * @return string datestamp of the latest notice in the stream */ - function lastModified() { if (!empty($this->notices) && (count($this->notices) > 0)) { @@ -234,7 +231,6 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction * * @return string etag */ - function etag() { if (!empty($this->notices) && (count($this->notices) > 0)) { @@ -255,5 +251,4 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction return null; } - } diff --git a/actions/apitimelinepublic.php b/actions/apitimelinepublic.php index 0119b504a7..2745e5d3fe 100644 --- a/actions/apitimelinepublic.php +++ b/actions/apitimelinepublic.php @@ -144,10 +144,8 @@ require_once INSTALLDIR . '/lib/apiprivateauth.php'; @endverbatim */ - class ApiTimelinePublicAction extends ApiPrivateAuthAction { - var $notices = null; /** @@ -158,7 +156,6 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction * @return boolean success flag * */ - function prepare($args) { parent::prepare($args); @@ -177,7 +174,6 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -189,16 +185,17 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction * * @return void */ - function showTimeline() { $sitename = common_config('site', 'name'); $sitelogo = (common_config('site', 'logo')) ? common_config('site', 'logo') : Theme::path('logo.png'); + // TRANS: Title for site timeline. %s is the StatusNet sitename. $title = sprintf(_("%s public timeline"), $sitename); $taguribase = TagURI::base(); $id = "tag:$taguribase:PublicTimeline"; $link = common_local_url('public'); $self = $this->getSelfUri(); + // TRANS: Subtitle for site timeline. %s is the StatusNet sitename. $subtitle = sprintf(_("%s updates from everyone!"), $sitename); switch($this->format) { @@ -238,6 +235,7 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction $this->showJsonTimeline($this->notices); break; default: + // TRANS: Client error displayed when trying to handle an unknown API method. $this->clientError(_('API method not found.'), $code = 404); break; } @@ -248,7 +246,6 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction * * @return array notices */ - function getNotices() { $notices = array(); @@ -272,7 +269,6 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction * * @return boolean true */ - function isReadOnly($args) { return true; @@ -283,7 +279,6 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction * * @return string datestamp of the latest notice in the stream */ - function lastModified() { if (!empty($this->notices) && (count($this->notices) > 0)) { @@ -301,7 +296,6 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction * * @return string etag */ - function etag() { if (!empty($this->notices) && (count($this->notices) > 0)) { @@ -321,5 +315,4 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction return null; } - } diff --git a/actions/apitimelineretweetedbyme.php b/actions/apitimelineretweetedbyme.php index af05623cdf..5fe9609159 100644 --- a/actions/apitimelineretweetedbyme.php +++ b/actions/apitimelineretweetedbyme.php @@ -43,7 +43,6 @@ require_once INSTALLDIR . '/lib/mediafile.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiTimelineRetweetedByMeAction extends ApiAuthAction { const DEFAULTCOUNT = 20; @@ -64,12 +63,12 @@ class ApiTimelineRetweetedByMeAction extends ApiAuthAction * @return boolean success flag * */ - function prepare($args) { parent::prepare($args); - $this->serverError('Unimplemented.', 503); + // TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. + $this->serverError(_('Unimplemented.'), 503); return false; } @@ -81,7 +80,6 @@ class ApiTimelineRetweetedByMeAction extends ApiAuthAction * * @return boolean is read only action? */ - function isReadOnly($args) { return true; diff --git a/actions/apitimelineretweetedtome.php b/actions/apitimelineretweetedtome.php index 73e35c86bf..6213a08eac 100644 --- a/actions/apitimelineretweetedtome.php +++ b/actions/apitimelineretweetedtome.php @@ -42,7 +42,6 @@ require_once INSTALLDIR . '/lib/apiauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiTimelineRetweetedToMeAction extends ApiAuthAction { const DEFAULTCOUNT = 20; @@ -61,9 +60,7 @@ class ApiTimelineRetweetedToMeAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -88,7 +85,6 @@ class ApiTimelineRetweetedToMeAction extends ApiAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -108,6 +104,7 @@ class ApiTimelineRetweetedToMeAction extends ApiAuthAction case 'atom': $profile = $this->auth_user->getProfile(); + // TRANS: Title for Atom feed "repeated to me". %s is the user nickname. $title = sprintf(_("Repeated to %s"), $this->auth_user->nickname); $taguribase = TagURI::base(); $id = "tag:$taguribase:RepeatedToMe:" . $this->auth_user->id; @@ -116,8 +113,8 @@ class ApiTimelineRetweetedToMeAction extends ApiAuthAction $this->showAtomTimeline($strm, $title, $id, $link); break; - default: + // TRANS: Client error displayed when trying to handle an unknown API method. $this->clientError(_('API method not found.'), $code = 404); break; } @@ -132,7 +129,6 @@ class ApiTimelineRetweetedToMeAction extends ApiAuthAction * * @return boolean is read only action? */ - function isReadOnly($args) { return true; diff --git a/actions/apitimelineretweetsofme.php b/actions/apitimelineretweetsofme.php index ea922fc427..9cb277279f 100644 --- a/actions/apitimelineretweetsofme.php +++ b/actions/apitimelineretweetsofme.php @@ -43,7 +43,6 @@ require_once INSTALLDIR . '/lib/mediafile.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiTimelineRetweetsOfMeAction extends ApiAuthAction { const DEFAULTCOUNT = 20; @@ -62,9 +61,7 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -89,7 +86,6 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -111,6 +107,8 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction case 'atom': $profile = $this->auth_user->getProfile(); + // TRANS: Title of list of repeated notices of the logged in user. + // TRANS: %s is the nickname of the logged in user. $title = sprintf(_("Repeats of %s"), $this->auth_user->nickname); $taguribase = TagURI::base(); $id = "tag:$taguribase:RepeatsOfMe:" . $this->auth_user->id; @@ -147,8 +145,8 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction $this->raw($atom->getString()); break; - default: + // TRANS: Client error displayed when trying to handle an unknown API method. $this->clientError(_('API method not found.'), $code = 404); break; } @@ -163,7 +161,6 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction * * @return boolean is read only action? */ - function isReadOnly($args) { return true; diff --git a/actions/apitimelinetag.php b/actions/apitimelinetag.php index 712703694f..4dbe1fc0db 100644 --- a/actions/apitimelinetag.php +++ b/actions/apitimelinetag.php @@ -49,10 +49,8 @@ require_once INSTALLDIR . '/lib/apiprivateauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiTimelineTagAction extends ApiPrivateAuthAction { - var $notices = null; /** @@ -61,9 +59,7 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -85,7 +81,6 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -97,13 +92,16 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction * * @return void */ - function showTimeline() { $sitename = common_config('site', 'name'); $sitelogo = (common_config('site', 'logo')) ? common_config('site', 'logo') : Theme::path('logo.png'); + // TRANS: Title for timeline with lastest notices with a given tag. + // TRANS: %s is the tag. $title = sprintf(_("Notices tagged with %s"), $this->tag); $subtitle = sprintf( + // TRANS: Subtitle for timeline with lastest notices with a given tag. + // TRANS: %1$s is the tag, $2$s is the StatusNet sitename. _('Updates tagged with %1$s on %2$s!'), $this->tag, $sitename @@ -136,7 +134,6 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction ); break; case 'atom': - header('Content-Type: application/atom+xml; charset=utf-8'); $atom = new AtomNoticeFeed($this->auth_user); @@ -158,6 +155,7 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction $this->showJsonTimeline($this->notices); break; default: + // TRANS: Client error displayed when trying to handle an unknown API method. $this->clientError(_('API method not found.'), $code = 404); break; } @@ -168,7 +166,6 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction * * @return array notices */ - function getNotices() { $notices = array(); @@ -193,7 +190,6 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction * * @return boolean true */ - function isReadOnly($args) { return true; @@ -204,7 +200,6 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction * * @return string datestamp of the latest notice in the stream */ - function lastModified() { if (!empty($this->notices) && (count($this->notices) > 0)) { @@ -222,7 +217,6 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction * * @return string etag */ - function etag() { if (!empty($this->notices) && (count($this->notices) > 0)) { @@ -243,5 +237,4 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction return null; } - } diff --git a/actions/apitimelineuser.php b/actions/apitimelineuser.php index 0c97aad21c..0046c462d7 100644 --- a/actions/apitimelineuser.php +++ b/actions/apitimelineuser.php @@ -57,10 +57,8 @@ require_once INSTALLDIR . '/lib/apibareauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiTimelineUserAction extends ApiBareAuthAction { - var $notices = null; /** @@ -69,9 +67,7 @@ class ApiTimelineUserAction extends ApiBareAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ - function prepare($args) { parent::prepare($args); @@ -79,6 +75,7 @@ class ApiTimelineUserAction extends ApiBareAuthAction $this->user = $this->getTargetUser($this->arg('id')); if (empty($this->user)) { + // TRANS: Client error displayed requesting most recent notices for a non-existing user. $this->clientError(_('No such user.'), 404, $this->format); return; } @@ -97,7 +94,6 @@ class ApiTimelineUserAction extends ApiBareAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -109,7 +105,6 @@ class ApiTimelineUserAction extends ApiBareAuthAction * * @return void */ - function showTimeline() { $profile = $this->user->getProfile(); @@ -147,7 +142,6 @@ class ApiTimelineUserAction extends ApiBareAuthAction ); break; case 'atom': - header('Content-Type: application/atom+xml; charset=utf-8'); $atom->setId($self); @@ -160,10 +154,10 @@ class ApiTimelineUserAction extends ApiBareAuthAction $this->showJsonTimeline($this->notices); break; default: + // TRANS: Client error displayed when trying to handle an unknown API method. $this->clientError(_('API method not found.'), $code = 404); break; } - } /** @@ -171,7 +165,6 @@ class ApiTimelineUserAction extends ApiBareAuthAction * * @return array notices */ - function getNotices() { $notices = array(); @@ -195,7 +188,6 @@ class ApiTimelineUserAction extends ApiBareAuthAction * * @return boolean true */ - function isReadOnly($args) { return true; @@ -206,7 +198,6 @@ class ApiTimelineUserAction extends ApiBareAuthAction * * @return string datestamp of the latest notice in the stream */ - function lastModified() { if (!empty($this->notices) && (count($this->notices) > 0)) { @@ -224,11 +215,9 @@ class ApiTimelineUserAction extends ApiBareAuthAction * * @return string etag */ - function etag() { if (!empty($this->notices) && (count($this->notices) > 0)) { - $last = count($this->notices) - 1; return '"' . implode( @@ -245,5 +234,4 @@ class ApiTimelineUserAction extends ApiBareAuthAction return null; } - } diff --git a/actions/apitrends.php b/actions/apitrends.php index 5b74636c69..3e854b1096 100644 --- a/actions/apitrends.php +++ b/actions/apitrends.php @@ -44,10 +44,8 @@ require_once INSTALLDIR.'/lib/apiprivateauth.php'; * * @see ApiAction */ - class ApiTrendsAction extends ApiPrivateAuthAction { - var $callback; /** @@ -70,7 +68,6 @@ class ApiTrendsAction extends ApiPrivateAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -84,7 +81,7 @@ class ApiTrendsAction extends ApiPrivateAuthAction */ function showTrends() { + // TRANS: Server error for unfinished API method showTrends. $this->serverError(_('API method under construction.'), 501); } - -} \ No newline at end of file +} diff --git a/actions/apiuserfollowers.php b/actions/apiuserfollowers.php index e8d92a773e..a5a429259d 100644 --- a/actions/apiuserfollowers.php +++ b/actions/apiuserfollowers.php @@ -48,7 +48,6 @@ require_once INSTALLDIR . '/lib/apibareauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiUserFollowersAction extends ApiSubscriptionsAction { /** @@ -56,7 +55,6 @@ class ApiUserFollowersAction extends ApiSubscriptionsAction * * @return array Profiles */ - function getProfiles() { $offset = ($this->page - 1) * $this->count; @@ -85,5 +83,4 @@ class ApiUserFollowersAction extends ApiSubscriptionsAction return $profiles; } - } diff --git a/actions/apiuserfriends.php b/actions/apiuserfriends.php index 741a26e588..b77d08097c 100644 --- a/actions/apiuserfriends.php +++ b/actions/apiuserfriends.php @@ -48,7 +48,6 @@ require_once INSTALLDIR . '/lib/apibareauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiUserFriendsAction extends ApiSubscriptionsAction { /** @@ -56,7 +55,6 @@ class ApiUserFriendsAction extends ApiSubscriptionsAction * * @return array Profiles */ - function getProfiles() { $offset = ($this->page - 1) * $this->count; @@ -85,5 +83,4 @@ class ApiUserFriendsAction extends ApiSubscriptionsAction return $profiles; } - } diff --git a/actions/apiusershow.php b/actions/apiusershow.php index 28993102c0..fbd4d60598 100644 --- a/actions/apiusershow.php +++ b/actions/apiusershow.php @@ -49,7 +49,6 @@ require_once INSTALLDIR . '/lib/apiprivateauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiUserShowAction extends ApiPrivateAuthAction { /** @@ -60,7 +59,6 @@ class ApiUserShowAction extends ApiPrivateAuthAction * @return boolean success flag * */ - function prepare($args) { parent::prepare($args); @@ -87,17 +85,18 @@ class ApiUserShowAction extends ApiPrivateAuthAction * * @return void */ - function handle($args) { parent::handle($args); if (empty($this->user)) { - $this->clientError(_('Not found.'), 404, $this->format); + // TRANS: Client error displayed when requesting user information for a non-existing user. + $this->clientError(_('User not found.'), 404, $this->format); return; } if (!in_array($this->format, array('xml', 'json'))) { + // TRANS: Client error displayed when trying to handle an unknown API method. $this->clientError(_('API method not found.'), $code = 404); return; } @@ -105,6 +104,7 @@ class ApiUserShowAction extends ApiPrivateAuthAction $profile = $this->user->getProfile(); if (empty($profile)) { + // TRANS: Client error displayed when requesting user information for a user without a profile. $this->clientError(_('User has no profile.')); return; } @@ -120,7 +120,6 @@ class ApiUserShowAction extends ApiPrivateAuthAction $this->showJsonObjects($twitter_user); $this->endDocument('json'); } - } /** @@ -132,10 +131,8 @@ class ApiUserShowAction extends ApiPrivateAuthAction * * @return boolean is read only action? */ - function isReadOnly($args) { return true; } - } diff --git a/actions/newgroup.php b/actions/newgroup.php index ebfe9b599d..2951920362 100644 --- a/actions/newgroup.php +++ b/actions/newgroup.php @@ -142,7 +142,12 @@ class NewgroupAction extends Action $this->showForm(_('Full name is too long (maximum 255 characters).')); return; } else if (User_group::descriptionTooLong($description)) { - $this->showForm(sprintf(_('description is too long (max %d chars).'), User_group::maxDescription())); + // TRANS: Form validation error creating a new group because the description is too long. + // TRANS: %d is the maximum number of allowed characters. + $this->showForm(sprintf(_m('Description is too long (maximum %d character).', + 'Description is too long (maximum %d characters).', + User_group::maxDescription(), + User_group::maxDescription())); return; } else if (!is_null($location) && mb_strlen($location) > 255) { $this->showForm(_('Location is too long (maximum 255 characters).')); @@ -156,7 +161,11 @@ class NewgroupAction extends Action } if (count($aliases) > common_config('group', 'maxaliases')) { - $this->showForm(sprintf(_('Too many aliases! Maximum %d.'), + // TRANS: Client error shown when providing too many aliases during group creation. + // TRANS: %d is the maximum number of allowed aliases. + $this->showForm(sprintf(_m('Too many aliases! Maximum %d allowed.', + 'Too many aliases! Maximum %d allowed.', + common_config('group', 'maxaliases')), common_config('group', 'maxaliases'))); return; } diff --git a/actions/showgroup.php b/actions/showgroup.php index 9a12bafaf6..8e8ff717c1 100644 --- a/actions/showgroup.php +++ b/actions/showgroup.php @@ -298,12 +298,12 @@ class ShowgroupAction extends GroupDesignAction $this->elementEnd('div'); + $cur = common_current_user(); $this->elementStart('div', 'entity_actions'); $this->element('h2', null, _('Group actions')); $this->elementStart('ul'); $this->elementStart('li', 'entity_subscribe'); if (Event::handle('StartGroupSubscribe', array($this, $this->group))) { - $cur = common_current_user(); if ($cur) { if ($cur->isMember($this->group)) { $lf = new LeaveForm($this, $this->group); @@ -316,7 +316,7 @@ class ShowgroupAction extends GroupDesignAction Event::handle('EndGroupSubscribe', array($this, $this->group)); } $this->elementEnd('li'); - if ($cur->hasRight(Right::DELETEGROUP)) { + if ($cur && $cur->hasRight(Right::DELETEGROUP)) { $this->elementStart('li', 'entity_delete'); $df = new DeleteGroupForm($this, $this->group); $df->show(); diff --git a/classes/User.php b/classes/User.php index 9188938b18..5914f0b806 100644 --- a/classes/User.php +++ b/classes/User.php @@ -884,13 +884,23 @@ class User extends Memcached_DataObject static function singleUser() { if (common_config('singleuser', 'enabled')) { + + $user = null; + $nickname = common_config('singleuser', 'nickname'); - if ($nickname) { + + if (!empty($nickname)) { $user = User::staticGet('nickname', $nickname); - } else { + } + + // if there was no nickname or no user by that nickname, + // try the site owner. + + if (empty($user)) { $user = User::siteOwner(); } - if ($user) { + + if (!empty($user)) { return $user; } else { // TRANS: Server exception. diff --git a/db/notice_source.sql b/db/notice_source.sql index 04d9d7ba65..82074077b4 100644 --- a/db/notice_source.sql +++ b/db/notice_source.sql @@ -34,7 +34,7 @@ VALUES ('mbpidgin','mbpidgin','http://code.google.com/p/microblog-purple/', now()), ('Mobidentica', 'Mobidentica', 'http://www.substanceofcode.com/software/mobidentica/', now()), ('moconica','Moconica','http://moconica.com/', now()), - ('mustard', 'MuSTArDroid', 'https://launchpad.net/mustardroid', now()), + ('mustard', 'mustard', 'http://mustard.macno.org', now()), ('nambu','Nambu','http://www.nambu.com/', now()), ('peoplebrowsr', 'PeopleBrowsr', 'http://www.peoplebrowsr.com/', now()), ('Pikchur','Pikchur','http://www.pikchur.com/', now()), diff --git a/lib/default.php b/lib/default.php index 26b872da4b..f524e194c4 100644 --- a/lib/default.php +++ b/lib/default.php @@ -302,6 +302,7 @@ $default = 'WikiHashtags' => null, 'RSSCloud' => null, 'ClientSideShorten' => null, + 'StrictTransportSecurity' => null, 'OpenID' => null), 'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories ), diff --git a/lib/ping.php b/lib/ping.php index be2933ae34..abf1c4048e 100644 --- a/lib/ping.php +++ b/lib/ping.php @@ -27,7 +27,14 @@ function ping_broadcast_notice($notice) { # Array of servers, URL => type $notify = common_config('ping', 'notify'); - $profile = $notice->getProfile(); + try { + $profile = $notice->getProfile(); + } catch (Exception $e) { + // @todo: distinguish the 'broken notice/profile' case from more general + // transitory errors. + common_log(LOG_ERR, "Exception getting notice profile: " . $e->getMessage()); + return true; + } $tags = ping_notice_tags($notice); foreach ($notify as $notify_url => $type) { diff --git a/lib/util.php b/lib/util.php index f5077f6011..5094b27126 100644 --- a/lib/util.php +++ b/lib/util.php @@ -342,7 +342,8 @@ function common_set_cookie($key, $value, $expiration=0) $value, $expiration, $cookiepath, - $server); + $server, + common_config('site', 'ssl')=='always'); } define('REMEMBERME', 'rememberme'); diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index fb21b9783a..446e35ccaf 100644 --- a/locale/af/LC_MESSAGES/statusnet.po +++ b/locale/af/LC_MESSAGES/statusnet.po @@ -9,70 +9,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:03:54+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:08:42+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Toegang" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Instellings vir toegang tot webwerf" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Registratie" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Mag anonieme gebruikers (nie aangeteken nie) die webwerf besigtig?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Geen anonieme toegang" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Registrasie slegs op uitnodiging." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Slegs op uitnodiging" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Deaktiveer nuwe registrasies." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Gesluit" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" msgstr "Stoor toegangsinstellings" +#. 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 to store form data in the Paths admin panel. @@ -80,7 +81,7 @@ msgstr "Stoor toegangsinstellings" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -88,29 +89,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Stoor" +#. 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 msgid "No such page." msgstr "Hierdie bladsy bestaan nie." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -123,41 +140,42 @@ msgid "No such user." msgstr "Onbekende gebruiker." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s en vriende, bladsy %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s en vriende" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Voer vir vriende van %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Voer vir vriende van %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Voer vir vriende van %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -167,16 +185,16 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -185,88 +203,106 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to them." msgstr "" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "U en vriende" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Opdaterings van %1$s en vriende op %2$s." #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "Die API-funksie is nie gevind nie." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Hierdie metode benodig 'n POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Kon nie die gebruiker opdateer nie." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -281,8 +317,8 @@ msgstr "Kon nie die profiel stoor nie." #. 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -297,10 +333,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -308,8 +346,9 @@ msgid "Unable to save your design settings." msgstr "Dit was nie moontlik om u ontwerp-instellings te stoor nie." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Dit was nie moontlik om u ontwerp by te werk nie." @@ -328,31 +367,31 @@ msgstr "Die blokkering van die gebruiker het gefaal." msgid "Unblock user failed." msgstr "Die deblokkering van die gebruiker het gefaal." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Direkte boodskappe vanaf %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Alle direkte boodskappe deur %s gestuur" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Direkte boodskappe aan %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Alle direkte boodskappe gestuur aan %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Die boodskap bevat geen inhoud nie!" @@ -387,7 +426,9 @@ msgid "" msgstr "" #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Geen status met die ID gevind nie." @@ -403,50 +444,60 @@ msgstr "Hierdie status is reeds 'n gunsteling." msgid "Could not create favorite." msgstr "Dit was nie moontlik om 'n gunsteling te skep nie." -#: actions/apifavoritedestroy.php:124 +#. 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 "Hierdie status is nie 'n gunsteling nie." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "" "Dit was nie moontlik om die boodskap van u gunstelinge te verwyder nie." -#: actions/apifriendshipscreate.php:110 +#. 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 "U kan nie die gebruiker volg nie: die gebruiker bestaan nie." -#: actions/apifriendshipscreate.php:119 +#. 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 "U kan nie die gebruiker volg nie: %1 is alreeds op u lys." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "" "U kan nie die gebruiker van u volglys verwyder nie: die gebruiker bestaan " "nie." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "U kan nie ophou om uself te volg nie." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "" -#: actions/apifriendshipsshow.php:134 +#. 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 "Kon nie die gebruiker opdateer nie." -#: actions/apifriendshipsshow.php:142 +#. 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 "Kon nie die gebruiker opdateer nie." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -456,7 +507,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -464,7 +515,7 @@ msgstr "Die gebruikersnaam is reeds in gebruik. Kies 'n ander een." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -473,7 +524,7 @@ msgstr "Nie 'n geldige gebruikersnaam nie." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -482,134 +533,167 @@ msgstr "Tuisblad is nie 'n geldige URL nie." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Volledige naam is te lang (maksimum 255 karakters)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Die beskrywing is te lank (die maksimum is %d karakters)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Die beskrywing is te lank (die maksimum is %d karakters)." +msgstr[1] "Die beskrywing is te lank (die maksimum is %d karakters)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Ligging is te lank is (maksimum 255 karakters)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Te veel aliasse! Die maksimum aantal is %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Te veel aliasse! Die maksimum aantal is %d." +msgstr[1] "Te veel aliasse! Die maksimum aantal is %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, fuzzy, php-format msgid "Invalid alias: \"%s\"." msgstr "Ongeldige alias: \"%s\"" -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Die alias \"%s\" word al reeds gebruik. Probeer 'n ander een." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Die alias kan nie dieselfde as die gebruikersnaam wees nie." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Nie gevind nie." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "U is reeds 'n lid van die groep." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "" +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Dit was nie moontlik om die groep by te werk nie." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "U is nie 'n lid van die groep nie." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Kon nie die groep skep nie." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "%s se groepe" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "Groepe op %1$s waar %2$s lid van is." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s groepe" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "groepe op %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 #, fuzzy msgid "Upload failed." msgstr "Die deblokkering van die gebruiker het gefaal." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "Ongeldige token." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: 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:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Ongeldige token." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: 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:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -634,7 +718,7 @@ msgid "Invalid nickname / password!" msgstr "Ongeldige gebruikersnaam of wagwoord!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 msgid "Database error inserting oauth_token_association." msgstr "" @@ -644,7 +728,7 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -654,19 +738,29 @@ msgid "Unexpected form submission." msgstr "Die vorm is onverwags ingestuur." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "'n Toepassing vra toegang tot u gebruikersinligting" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Toegang toelaat of weier" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -675,7 +769,7 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -683,7 +777,7 @@ msgstr "Gebruiker" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -693,7 +787,7 @@ msgstr "Bynaam" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Wagwoord" @@ -704,7 +798,7 @@ msgstr "Wagwoord" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -712,86 +806,108 @@ msgid "Cancel" msgstr "Kanselleer" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Toestaan" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "Laat toegang tot u gebruikersinligting toe of weier dit." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "Geen bevestigingskode." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" +msgstr "Dit was nie moontlik om die applikasie te skep nie." + +#. 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." msgstr "" -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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:589 +#: 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Hierdie metode vereis 'n POST of DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "U mag nie 'n ander gebruiker se status verwyder nie." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Die kennisgewing bestaan nie." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "U kan nie u eie kennisgewings herhaal nie." +#. 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:541 msgid "Already repeated that notice." msgstr "U het reeds die kennisgewing herhaal." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Die status is verwyder." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Geen status met die ID gevind nie." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -799,80 +915,119 @@ msgstr[0] "Die kennisgewing is te lank. Gebruik maksimum %d karakters." msgstr[1] "Die kennisgewing is te lank. Gebruik maksimum %d karakters." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "Die API-funksie is nie gevind nie." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, 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] "" msgstr[1] "" -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Nie-ondersteunde formaat." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Gunstelinge van %2$s" -#: actions/apitimelinefavorites.php:119 +#. 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 #, fuzzy, php-format -msgid "%1$s updates favorited by %2$s / %2$s." +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s / Gunstelinge van %2$s" -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Dit was nie moontlik om die groep by te werk nie." + +#. 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 msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Gunstelinge van %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 "" -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, fuzzy, php-format msgid "%s public timeline" msgstr "%s tydlyn" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Opdrag voltooi" + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Na %s herhaal" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Herhalings van %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, fuzzy, php-format msgid "Notices tagged with %s" msgstr "met die etiket %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 msgid "Updates tagged with %1$s on %2$s!" msgstr "Opdaterings van %1$s op %2$s." -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 #, fuzzy msgid "API method under construction." msgstr "Die API-funksie is nie gevind nie." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Nie gevind nie." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +#, fuzzy +msgid "User not found." +msgstr "Die API-funksie is nie gevind nie." #: actions/attachment.php:73 msgid "No such attachment." @@ -1508,16 +1663,6 @@ msgstr "Die naam is reeds in gebruik. Kies 'n ander een." msgid "Description is required." msgstr "Beskrywing word vereis." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Die beskrywing is te lank (die maksimum is %d karakters)." -msgstr[1] "Die beskrywing is te lank (die maksimum is %d karakters)." - #. 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." @@ -1576,7 +1721,17 @@ msgstr "U moet 'n administrateur wees alvorens u 'n groep kan wysig." msgid "Use this form to edit the group." msgstr "Gebruik hierdie vorm om die groep te wysig." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Die beskrywing is te lank (die maksimum is %d karakters)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Te veel aliasse! Die maksimum aantal is %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Ongeldige alias: \"%s\"" @@ -2763,11 +2918,6 @@ msgstr "Nuwe groep" msgid "Use this form to create a new group." msgstr "Gebruik hierdie vorm om die groep te wysig." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "Die beskrywing is te lank (die maksimum is %d karakters)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Nuwe boodskap" @@ -7924,17 +8074,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "'n paar sekondes gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "ongeveer 'n minuut gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7942,12 +8092,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "ongeveer 'n uur gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7955,12 +8105,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "ongeveer een dag gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7968,12 +8118,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "ongeveer een maand gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7981,7 +8131,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "ongeveer een jaar gelede" @@ -8031,16 +8181,3 @@ msgstr "Geen groep verskaf nie." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Volledige naam is te lang (maksimum 255 karakters)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Ligging is te lank is (maksimum 255 karakters)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Dit is te lank. Die maksimum boodskaplengte is %d karakters." - -#, fuzzy -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Die beskrywing is te lank (die maksimum is %d karakters)." diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 1023634d6c..005a5dc820 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -11,72 +11,73 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:03:56+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:08:44+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\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: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "نفاذ" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "إعدادات الوصول إلى الموقع" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "تسجيل" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "أأمنع المستخدمين المجهولين (غير الوالجين) من عرض الموقع؟" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "خاص" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "اجعل التسجيل عبر الدعوة فقط." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "بالدعوة فقط" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "عطّل التسجيل الجديد." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "مُغلق" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" 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 to store form data in the Paths admin panel. @@ -84,7 +85,7 @@ msgstr "حفظ إعدادت الوصول" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -92,29 +93,45 @@ msgctxt "BUTTON" msgid "Save" 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 msgid "No such page." msgstr "لا صفحة كهذه." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -127,41 +144,42 @@ msgid "No such user." msgstr "لا مستخدم كهذا." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s والأصدقاء, الصفحة %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s والأصدقاء" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -169,16 +187,16 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -187,7 +205,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, fuzzy, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -196,81 +214,99 @@ msgstr "" "%s لم يضف أي إشعارات إلى مفضلته إلى الآن. لمّ لا [تسجل حسابًا](%%%%action." "register%%%%) وترسل شيئًا شيقًا ليضيفه إلى مفضلته. :)" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "أنت والأصدقاء" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, fuzzy, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "الإشعارات التي فضلها %1$s في %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "تتطلب هذه الطريقة POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -285,8 +321,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -305,10 +341,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -317,8 +355,9 @@ msgid "Unable to save your design settings." msgstr "تعذّر حذف إعدادات التصميم." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "تعذّر تحديث تصميمك." @@ -337,31 +376,31 @@ msgstr "فشل منع المستخدم." msgid "Unblock user failed." msgstr "فشل إلغاء منع المستخدم." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "رسائل مباشرة من %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "جميع الرسائل المرسلة من %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "رسالة مباشرة %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "كل الرسائل المباشرة التي أرسلت إلى %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "لا نص في الرسالة!" @@ -398,7 +437,9 @@ msgid "" msgstr "" #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 #, fuzzy msgid "No status found with that ID." @@ -415,47 +456,57 @@ msgstr "هذه الحالة مفضلة بالفعل." msgid "Could not create favorite." msgstr "تعذّر إنشاء مفضلة." -#: actions/apifavoritedestroy.php:124 +#. 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 "تلك الحالة ليست مفضلة." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "تعذّر حذف المفضلة." -#: actions/apifriendshipscreate.php:110 +#. TRANS: Client error displayed when trying follow who's profile could not be found. +#: actions/apifriendshipscreate.php:109 #, fuzzy msgid "Could not follow user: profile not found." msgstr "لم يمكن حفظ الملف." -#: actions/apifriendshipscreate.php:119 +#. 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 #, fuzzy, php-format msgid "Could not follow user: %s is already on your list." msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s." -#: actions/apifriendshipsdestroy.php:110 +#. 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 "لا يمكنك عدم متابعة نفسك." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "لا يمكنك عدم متابعة نفسك." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "" -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "تعذّر تحديد المستخدم المصدر." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "تعذّر إيجاد المستخدم الهدف." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 #, fuzzy @@ -464,7 +515,7 @@ msgstr "1-64 حرفًا إنجليزيًا أو رقمًا بدون نقاط أ #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -472,7 +523,7 @@ msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمً #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -481,7 +532,7 @@ msgstr "ليس اسمًا مستعارًا صحيحًا." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -490,137 +541,178 @@ msgstr "الصفحة الرئيسية ليست عنونًا صالحًا." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 #, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "المنظمة طويلة جدا (الأقصى %d حرفا)." +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "المنظمة طويلة جدا (الأقصى %d حرفا)." +msgstr[1] "المنظمة طويلة جدا (الأقصى %d حرفا)." +msgstr[2] "المنظمة طويلة جدا (الأقصى %d حرفا)." +msgstr[3] "المنظمة طويلة جدا (الأقصى %d حرفا)." +msgstr[4] "المنظمة طويلة جدا (الأقصى %d حرفا)." +msgstr[5] "المنظمة طويلة جدا (الأقصى %d حرفا)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "المنظمة طويلة جدا (الأقصى 255 حرفا)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "كنيات كيرة! العدد الأقصى هو %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "كنيات كيرة! العدد الأقصى هو %d." +msgstr[1] "كنيات كيرة! العدد الأقصى هو %d." +msgstr[2] "كنيات كيرة! العدد الأقصى هو %d." +msgstr[3] "كنيات كيرة! العدد الأقصى هو %d." +msgstr[4] "كنيات كيرة! العدد الأقصى هو %d." +msgstr[5] "كنيات كيرة! العدد الأقصى هو %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "كنية غير صالحة: \"%s\"." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمًا آخرًا." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 #, fuzzy 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: 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 #, fuzzy msgid "You have been blocked from that group by the admin." msgstr "لم تمنع هذا المستخدم." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "لست عضوًا في هذه المجموعة" +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "لم يمكن إزالة المستخدم %1$s من المجموعة %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "مجموعات %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "مجموعات %1$s التي %2$s عضو فيها." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "مجموعات %s" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "مجموعات %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 #, fuzzy msgid "Upload failed." msgstr "ارفع ملفًا" #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "توكن دخول غير صحيح محدد." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: 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:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "حجم غير صالح." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy 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:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -645,7 +737,7 @@ msgid "Invalid nickname / password!" msgstr "اسم/كلمة سر غير صحيحة!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "خطأ في قاعدة البيانات أثناء حذف مستخدم تطبيق OAuth." @@ -656,7 +748,7 @@ msgstr "خطأ في قاعدة البيانات أثناء حذف مستخدم #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -666,19 +758,29 @@ 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:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: 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, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -687,7 +789,7 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -695,7 +797,7 @@ msgstr "الحساب" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -705,7 +807,7 @@ msgstr "الاسم المستعار" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "كلمة السر" @@ -716,7 +818,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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -724,87 +826,109 @@ msgid "Cancel" msgstr "ألغِ" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "اسمح" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: 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:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "أُلغي تأكيد المراسلة الفورية." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "لا تملك تصريحًا." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 #, fuzzy msgid "This method requires a POST or DELETE." msgstr "تتطلب هذه الطريقة POST." -#: actions/apistatusesdestroy.php:135 +#. TRANS: Client error displayed trying to delete a status of another user. +#: actions/apistatusesdestroy.php:136 #, fuzzy msgid "You may not delete another user's status." msgstr "لا يمكنك حذف المستخدمين." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 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:541 msgid "Already repeated that notice." msgstr "كرر بالفعل هذه الملاحظة." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "حُذِفت الحالة." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "لا حالة وُجدت بهذه الهوية." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -816,12 +940,14 @@ msgstr[4] "هذه طويلة جدًا. أطول حجم للإشعار %d حرف msgstr[5] "هذه طويلة جدًا. أطول حجم للإشعار %d حرفًا." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "لم يتم العثور على وسيلة API." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -832,68 +958,104 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "نسق غير مدعوم." -#: actions/apitimelinefavorites.php:110 +#. 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 msgid "%1$s / Favorites from %2$s" msgstr "%1$s انضم للمجموعة %2$s" -#: actions/apitimelinefavorites.php:119 +#. 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 #, fuzzy, php-format -msgid "%1$s updates favorited by %2$s / %2$s." +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "الإشعارات التي فضلها %1$s في %2$s!" -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %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 msgid "%1$s / Updates mentioning %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 "" -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "مسار %s الزمني العام" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "الأمر لم يُجهزّ بعد." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "كرر إلى %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "تكرارات %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "الإشعارات الموسومة ب%s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 msgid "Updates tagged with %1$s on %2$s!" msgstr "الإشعارات التي فضلها %1$s في %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 #, fuzzy msgid "API method under construction." msgstr "لم يتم العثور على وسيلة API." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "لم يوجد." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "لم يُعثرعلى المستخدم." #: actions/attachment.php:73 msgid "No such attachment." @@ -1525,20 +1687,6 @@ msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمً msgid "Description is required." msgstr "الوصف مطلوب." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "المنظمة طويلة جدا (الأقصى %d حرفا)." -msgstr[1] "المنظمة طويلة جدا (الأقصى %d حرفا)." -msgstr[2] "المنظمة طويلة جدا (الأقصى %d حرفا)." -msgstr[3] "المنظمة طويلة جدا (الأقصى %d حرفا)." -msgstr[4] "المنظمة طويلة جدا (الأقصى %d حرفا)." -msgstr[5] "المنظمة طويلة جدا (الأقصى %d حرفا)." - #. 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." @@ -1599,7 +1747,17 @@ msgstr "يجب أن تكون إداريا لتعدل المجموعة." msgid "Use this form to edit the group." msgstr "استخدم هذا النموذج لتعديل المجموعة." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "المنظمة طويلة جدا (الأقصى %d حرفا)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "كنيات كيرة! العدد الأقصى هو %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "كنية غير صالحة: \"%s\"" @@ -2750,7 +2908,6 @@ msgstr "لا حالة جارية." #. TRANS: This is the title of the form for adding a new application. #: actions/newapplication.php:52 -#, fuzzy msgid "New application" msgstr "تطبيق جديد" @@ -2790,11 +2947,6 @@ msgstr "مجموعة جديدة" msgid "Use this form to create a new group." msgstr "استخدم هذا النموذج لإنشاء مجموعة جديدة." -#: actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "المنظمة طويلة جدا (الأقصى 255 حرفا)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "رسالة جديدة" @@ -7941,17 +8093,17 @@ msgid "Moderator" msgstr "مراقب" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "قبل دقيقة تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7963,12 +8115,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "قبل ساعة تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7980,12 +8132,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "قبل يوم تقريبا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7997,12 +8149,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "قبل شهر تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8014,7 +8166,7 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "قبل سنة تقريبًا" @@ -8063,21 +8215,3 @@ msgstr "لا هوية مستخدم محددة." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" - -#, fuzzy -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "المنظمة طويلة جدا (الأقصى 255 حرفا)." - -#, fuzzy -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "هذه طويلة جدًا. أطول حجم للإشعار %d حرفًا." - -#, fuzzy -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "الاسم طويل جدا (الأقصى %d حرفا)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "تكلم عن نفسك واهتمامتك في %d حرف" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index eea3f6559a..2f79e0763e 100644 --- a/locale/arz/LC_MESSAGES/statusnet.po +++ b/locale/arz/LC_MESSAGES/statusnet.po @@ -11,75 +11,76 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:03:58+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:08:45+0000\n" "Language-Team: Egyptian Spoken Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: arz\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: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "نفاذ" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 #, fuzzy msgid "Site access settings" msgstr "اذف إعدادت الموقع" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 #, fuzzy msgid "Registration" msgstr "سجّل" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "أأمنع المستخدمين المجهولين (غير الوالجين) من عرض الموقع؟" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "خصوصية" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "" #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "بالدعوه فقط" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "عطّل التسجيل الجديد." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "مُغلق" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 #, fuzzy msgid "Save access settings" 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 to store form data in the Paths admin panel. @@ -87,7 +88,7 @@ msgstr "اذف إعدادت الموقع" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -96,29 +97,45 @@ msgctxt "BUTTON" msgid "Save" 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 msgid "No such page." msgstr "لا وسم كهذا." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -131,41 +148,42 @@ msgid "No such user." msgstr "لا مستخدم كهذا." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s و الصحاب, صفحه %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s والأصدقاء" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -173,16 +191,16 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -191,7 +209,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, fuzzy, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -200,81 +218,99 @@ msgstr "" "%s لم يضف أى إشعارات إلى مفضلته إلى الآن. لمّ لا [تسجل حسابًا](%%%%action." "register%%%%) وترسل شيئًا شيقًا ليضيفه إلى مفضلته. :)" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "أنت والأصدقاء" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, fuzzy, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "%1$s و الصحاب, صفحه %2$d" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "الـ API method مش موجوده." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "تتطلب هذه الطريقه POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -289,8 +325,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -309,10 +345,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -321,8 +359,9 @@ msgid "Unable to save your design settings." msgstr "تعذّر حذف إعدادات التصميم." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "تعذّر تحديث تصميمك." @@ -341,31 +380,31 @@ msgstr "فشل منع المستخدم." msgid "Unblock user failed." msgstr "فشل إلغاء منع المستخدم." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "رسائل مباشره من %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, fuzzy, php-format msgid "All the direct messages sent from %s" msgstr "رسائل مباشره من %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "رساله مباشره %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, fuzzy, php-format msgid "All the direct messages sent to %s" msgstr "رساله مباشره %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "لا نص فى الرسالة!" @@ -402,7 +441,9 @@ msgid "" msgstr "" #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 #, fuzzy msgid "No status found with that ID." @@ -419,48 +460,58 @@ msgstr "الحاله دى موجوده فعلا فى التفضيلات." msgid "Could not create favorite." msgstr "تعذّر إنشاء مفضله." -#: actions/apifavoritedestroy.php:124 +#. 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 "الحاله دى مش محطوطه فى التفضيلات." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "تعذّر حذف المفضله." -#: actions/apifriendshipscreate.php:110 +#. TRANS: Client error displayed when trying follow who's profile could not be found. +#: actions/apifriendshipscreate.php:109 #, fuzzy msgid "Could not follow user: profile not found." msgstr "لم يمكن حفظ الملف." -#: actions/apifriendshipscreate.php:119 +#. 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 #, fuzzy, php-format msgid "Could not follow user: %s is already on your list." msgstr "ما نفعش يضم %1$s للجروپ %2$s." -#: actions/apifriendshipsdestroy.php:110 +#. 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 "ما ينفعش عدم متابعة نفسك." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "ما ينفعش عدم متابعة نفسك." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "" -#: actions/apifriendshipsshow.php:134 +#. 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 "تعذّر إيجاد المستخدم الهدف." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "تعذّر إيجاد المستخدم الهدف." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -468,7 +519,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -476,7 +527,7 @@ msgstr "" #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -485,7 +536,7 @@ msgstr "ليس اسمًا مستعارًا صحيحًا." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -494,138 +545,179 @@ msgstr "الصفحه الرئيسيه ليست عنونًا صالحًا." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 #, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "المنظمه طويله جدا (اكتر حاجه %d رمز)." +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "المنظمه طويله جدا (اكتر حاجه %d رمز)." +msgstr[1] "المنظمه طويله جدا (اكتر حاجه %d رمز)." +msgstr[2] "المنظمه طويله جدا (اكتر حاجه %d رمز)." +msgstr[3] "المنظمه طويله جدا (اكتر حاجه %d رمز)." +msgstr[4] "المنظمه طويله جدا (اكتر حاجه %d رمز)." +msgstr[5] "المنظمه طويله جدا (اكتر حاجه %d رمز)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "المنظمه طويله جدا (اكتر حاجه 255 رمز)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 #, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, fuzzy, php-format msgid "Invalid alias: \"%s\"." msgstr "كنيه غير صالحة: \"%s\"" -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "" -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 #, fuzzy 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: 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 #, fuzzy msgid "You have been blocked from that group by the admin." msgstr "لم تمنع هذا المستخدم." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "ما نفعش يضم %1$s للجروپ %2$s." -#: actions/apigroupleave.php:116 +#. 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 "لست عضوا فى تلك المجموعه." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "ما نفعش يتشال اليوزر %1$s من الجروپ %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "مجموعات %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 msgid "%1$s groups %2$s is a member of." msgstr "المجموعات التى %s عضو فيها" -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "مجموعات %s" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "مجموعات %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 #, fuzzy msgid "Upload failed." msgstr "ارفع ملفًا" #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "امارة تسجيل الدخول اللى اتحطت مش موجوده." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: 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:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "حجم غير صالح." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy 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:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -650,7 +742,7 @@ msgid "Invalid nickname / password!" msgstr "نيكنيم / پاسوورد مش مظبوطه!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "خطأ قاعده البيانات أثناء إدخال المستخدم OAuth app" @@ -661,7 +753,7 @@ msgstr "خطأ قاعده البيانات أثناء إدخال المستخد #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -671,19 +763,29 @@ 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:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: 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, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -692,7 +794,7 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -700,7 +802,7 @@ msgstr "الحساب" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -710,7 +812,7 @@ msgstr "الاسم المستعار" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "كلمه السر" @@ -721,7 +823,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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 #, fuzzy @@ -730,88 +832,110 @@ msgid "Cancel" msgstr "ألغِ" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "اسمح" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: 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:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "لا رمز تأكيد." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "لا تملك تصريحًا." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 #, fuzzy msgid "This method requires a POST or DELETE." msgstr "تتطلب هذه الطريقه POST." -#: actions/apistatusesdestroy.php:135 +#. TRANS: Client error displayed trying to delete a status of another user. +#: actions/apistatusesdestroy.php:136 #, fuzzy msgid "You may not delete another user's status." msgstr "لا يمكنك حذف المستخدمين." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 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:541 msgid "Already repeated that notice." msgstr "الملاحظه اتكررت فعلا." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "حُذِفت الحاله." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 #, fuzzy msgid "No status with that ID found." msgstr "لا ملف شخصى بهذه الهويه." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -823,12 +947,14 @@ msgstr[4] "هذا الملف كبير جدًا. إن أقصى حجم للملف msgstr[5] "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %d." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "الـ API method مش موجوده." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -839,68 +965,105 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "نسق غير مدعوم." -#: actions/apitimelinefavorites.php:110 +#. 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 msgid "%1$s / Favorites from %2$s" msgstr "%1$s دخل جروپ %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$s / %2$s." -msgstr "" +#. 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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." +msgstr "نتايج التدوير لـ\"%1$s\" على %2$s" -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "" +#. 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 "" -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "مسار %s الزمنى العام" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "اكتمل الأمر" + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "كرر إلى %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "تكرارات %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "الإشعارات الموسومه ب%s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 msgid "Updates tagged with %1$s on %2$s!" msgstr "الإشعارات الموسومه ب%s" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 #, fuzzy msgid "API method under construction." msgstr "الـ API method مش موجوده." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "لم يوجد." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +#, fuzzy +msgid "User not found." +msgstr "الـ API method مش موجوده." #: actions/attachment.php:73 msgid "No such attachment." @@ -1538,20 +1701,6 @@ msgstr "" msgid "Description is required." msgstr "الوصف مطلوب." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "المنظمه طويله جدا (اكتر حاجه %d رمز)." -msgstr[1] "المنظمه طويله جدا (اكتر حاجه %d رمز)." -msgstr[2] "المنظمه طويله جدا (اكتر حاجه %d رمز)." -msgstr[3] "المنظمه طويله جدا (اكتر حاجه %d رمز)." -msgstr[4] "المنظمه طويله جدا (اكتر حاجه %d رمز)." -msgstr[5] "المنظمه طويله جدا (اكتر حاجه %d رمز)." - #. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form. #: actions/editapplication.php:208 #, fuzzy @@ -1614,7 +1763,17 @@ msgstr "لازم تكون ادارى علشان تعدّل الجروپ." msgid "Use this form to edit the group." msgstr "استخدم هذا النموذج لتعديل المجموعه." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "المنظمه طويله جدا (اكتر حاجه %d رمز)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "كنيه غير صالحة: \"%s\"" @@ -2817,11 +2976,6 @@ msgstr "مجموعه جديدة" msgid "Use this form to create a new group." msgstr "استخدم هذا النموذج لإنشاء مجموعه جديده." -#: actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "المنظمه طويله جدا (اكتر حاجه 255 رمز)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "رساله جديدة" @@ -7944,17 +8098,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "قبل دقيقه تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7966,12 +8120,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "قبل ساعه تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7983,12 +8137,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "قبل يوم تقريبا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8000,12 +8154,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "قبل شهر تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8017,7 +8171,7 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "قبل سنه تقريبًا" @@ -8066,22 +8220,3 @@ msgstr "ما فيش ID متحدد لليوزر." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" - -#, fuzzy -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "المنظمه طويله جدا (اكتر حاجه 255 رمز)." - -#, fuzzy -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %d." - -#, fuzzy -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "الاسم طويل جدا (اكتر حاجه %d رمز)." - -#, fuzzy -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "صِف نفسك واهتماماتك" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 9c697c861b..1be9f60d0a 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -10,70 +10,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:00+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:08:46+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\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: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Достъп" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Настройки за достъп до сайта" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Регистриране" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Поверителност" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Новите регистрации да са само с покани." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Само с покани" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Изключване на новите регистрации." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Затворен" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" 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 to store form data in the Paths admin panel. @@ -81,7 +82,7 @@ msgstr "Запазване настройките за достъп" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -89,29 +90,45 @@ msgctxt "BUTTON" msgid "Save" 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 msgid "No such page." msgstr "Няма такака страница." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -124,41 +141,42 @@ msgid "No such user." msgstr "Няма такъв потребител" #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s и приятели, страница %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s и приятели" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Емисия с приятелите на %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Емисия с приятелите на %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Емисия с приятелите на %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -166,16 +184,16 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -184,88 +202,106 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to them." msgstr "" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Вие и приятелите" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Бележки от %1$s и приятели в %2$s." #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Този метод изисква заявка POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -280,8 +316,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -296,10 +332,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -308,8 +346,9 @@ msgid "Unable to save your design settings." msgstr "Грешка при записване настройките за Twitter" #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. 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 "Грешка при обновяване на потребителя." @@ -329,31 +368,31 @@ msgstr "Грешка при блокиране на потребителя." msgid "Unblock user failed." msgstr "Грешка при разблокиране на потребителя." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Преки съобщения от %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Всички преки съобщения, изпратени от %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Преки съобщения до %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Всички преки съобщения, изпратени до %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Липсва текст на съобщението" @@ -391,7 +430,9 @@ msgstr "" "тихичко." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Не е открита бележка с такъв идентификатор." @@ -407,46 +448,56 @@ msgstr "Тази бележка вече е отбелязана като люб msgid "Could not create favorite." msgstr "Грешка при отбелязване като любима." -#: actions/apifavoritedestroy.php:124 +#. 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 "Тази бележка не е отбелязана като любима." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Грешка при изтриване на любима бележка." -#: actions/apifriendshipscreate.php:110 +#. 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 "Грешка при спиране на проследяването — потребителят не е намерен." -#: actions/apifriendshipscreate.php:119 +#. 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 "Грешка при проследяване на потребител: %s вече е в списъка ви." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Грешка при спиране на проследяването — потребителят не е намерен." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Не можете да спрете да следите себе си." -#: actions/apifriendshipsexists.php:91 +#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists. +#: actions/apifriendshipsexists.php:88 #, fuzzy msgid "Two valid IDs or screen_names must be supplied." msgstr "Трябва да се дадат два идентификатора или имена на потребители." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Целевият потребител не беше открит." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Целевият потребител не беше открит." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -456,7 +507,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -464,7 +515,7 @@ msgstr "Опитайте друг псевдоним, този вече е за #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -473,7 +524,7 @@ msgstr "Неправилен псевдоним." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -482,136 +533,169 @@ msgstr "Адресът на личната страница не е правил #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Пълното име е твърде дълго (макс. 255 знака)" -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Описанието е твърде дълго (до %d символа)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Описанието е твърде дълго (до %d символа)." +msgstr[1] "Описанието е твърде дълго (до %d символа)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Името на местоположението е твърде дълго (макс. 255 знака)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 #, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "" +msgstr[1] "" -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Неправилен псевдоним: \"%s\"" -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Псевдонимът \"%s\" вече е зает. Опитайте друг." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: 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: 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 #, fuzzy msgid "You have been blocked from that group by the admin." msgstr "Не сте блокирали този потребител." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Грешка при обновяване на групата." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Не членувате в тази група." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Грешка при създаване на групата." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Групи на %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 msgid "%1$s groups %2$s is a member of." msgstr "Групи, в които участва %s" -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Групи на %s" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "групи в %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 #, fuzzy msgid "Upload failed." msgstr "Качване на файл" #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "Не е указана бележка." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: 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:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Неправилен размер." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy 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:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -636,7 +720,7 @@ msgid "Invalid nickname / password!" msgstr "Неправилно име или парола!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "Грешка в базата от данни — отговор при вмъкването: %s" @@ -647,7 +731,7 @@ msgstr "Грешка в базата от данни — отговор при #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -657,19 +741,29 @@ 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:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: 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, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -678,7 +772,7 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -686,7 +780,7 @@ msgstr "Сметка" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -696,7 +790,7 @@ msgstr "Псевдоним" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Парола" @@ -707,7 +801,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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -715,85 +809,107 @@ msgid "Cancel" msgstr "Отказ" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Разрешение" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: 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:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "Няма код за потвърждение." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Не сте абонирани за никого." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Този метод изисква заявка POST или DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Не може да изтривате бележки на друг потребител." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 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:541 msgid "Already repeated that notice." msgstr "Вече сте повторили тази бележка." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Бележката е изтрита." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Не е открита бележка с такъв идентификатор." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -801,79 +917,117 @@ msgstr[0] "Твърде дълго. Може да е най-много %d зна msgstr[1] "Твърде дълго. Може да е най-много %d знака." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "Не е открит методът в API." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, 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] "" msgstr[1] "" -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Неподдържан формат." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "Бележка на %1$s от %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s реплики на съобщения от %2$s / %3$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %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 #, php-format msgid "%1$s / Updates mentioning %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 "%1$s реплики на съобщения от %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Общ поток на %s" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Командата все още не се поддържа." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Повторено за %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Повторения на %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Бележки с етикет %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 msgid "Updates tagged with %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "Методът в API все още се разработва." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Не е открито." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "Не е открит методът в API." #: actions/attachment.php:73 msgid "No such attachment." @@ -1515,16 +1669,6 @@ msgstr "Опитайте друг псевдоним, този вече е за msgid "Description is required." msgstr "Описанието е задължително." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Описанието е твърде дълго (до %d символа)." -msgstr[1] "Описанието е твърде дълго (до %d символа)." - #. 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." @@ -1588,7 +1732,17 @@ msgstr "За да редактирате група, трябва да сте в msgid "Use this form to edit the group." msgstr "Използвайте тази бланка за създаване на нова група." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Описанието е твърде дълго (до %d символа)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Неправилен псевдоним: \"%s\"" @@ -2823,11 +2977,6 @@ msgstr "Нова група" msgid "Use this form to create a new group." msgstr "Използвайте тази бланка за създаване на нова група." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "Описанието е твърде дълго (до %d символа)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Ново съобщение" @@ -7946,17 +8095,17 @@ msgid "Moderator" msgstr "Модератор" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "преди няколко секунди" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "преди около минута" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7964,12 +8113,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "преди около час" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7977,12 +8126,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "преди около ден" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7990,12 +8139,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "преди около месец" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8003,7 +8152,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "преди около година" @@ -8052,18 +8201,3 @@ msgstr "Не е указана група." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Пълното име е твърде дълго (макс. 255 знака)" - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Името на местоположението е твърде дълго (макс. 255 знака)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Твърде дълго. Може да е най-много %d знака." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Биографията е твърде дълга (до %d символа)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Опишете себе си и интересите си в до %d букви" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index da78a71a3b..9af1591ac6 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -11,70 +11,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:01+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:08:47+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Moned" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Arventennoù moned d'al lec'hienn" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Enskrivadur" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Nac'h ouzh an implijerien dizanv (nann-luget) da welet al lec'hienn ?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Prevez" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Aotreañ an enskrivadur goude bezañ bet pedet hepken." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Tud pedet hepken" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Diweredekaat an enskrivadurioù nevez." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Serr" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" msgstr "Enrollañ an arventennoù moned" +#. 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 to store form data in the Paths admin panel. @@ -82,7 +83,7 @@ msgstr "Enrollañ an arventennoù moned" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -90,29 +91,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Enrollañ" +#. 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 msgid "No such page." msgstr "N'eus ket eus ar bajenn-se." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -125,41 +142,42 @@ msgid "No such user." msgstr "N'eus ket eus an implijer-se." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s hag e vignoned, pajenn %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s hag e vignoned" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Gwazh evit mignoned %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Gwazh evit mignoned %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Gwazh evit mignoned %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -169,16 +187,16 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -187,7 +205,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -196,81 +214,99 @@ msgstr "" "Perak ne [groufec'h ket ur gont](%%%%action.register%%%%) ha goude-se demata " "%s pe postañ ur c'hemenn bennak evitañ." -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "C'hwi hag o mignoned" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Hizivadennoù %1$s ha mignoned e %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "N'eo ket bet kavet an hentenn 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Ezhomm en deus an argerzh-mañ eus ur POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Diposubl eo hizivaat an implijer." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -285,8 +321,8 @@ msgstr "Diposubl 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -301,10 +337,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -312,8 +350,9 @@ msgid "Unable to save your design settings." msgstr "Dibosupl eo enrollañ an arventennoù empentiñ." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Diposubl eo hizivat ho design." @@ -332,31 +371,31 @@ msgstr "N'eus ket bet tu da stankañ an implijer." msgid "Unblock user failed." msgstr "N'eus ket bet tu da zistankañ an implijer." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Kemennadennoù war-eeun kaset gant %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "An holl gemennadennoù war-eeun kaset gant %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Kemennadennoù war-eeun kaset da %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "An holl gemennadennoù war-eeun kaset da %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Kemenadenn hep testenn !" @@ -394,7 +433,9 @@ msgstr "" "penn kentoc'h." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "N'eo bet kavet statud ebet gant an ID-mañ." @@ -410,47 +451,57 @@ msgstr "Ur pennroll eo dija ar c'hemenn-mañ." msgid "Could not create favorite." msgstr "Diposupl eo krouiñ ar pennroll-mañ." -#: actions/apifavoritedestroy.php:124 +#. 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 "N'eo ket ar statud-mañ ur pennroll." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Diposupl eo dilemel ar pennroll-mañ." -#: actions/apifriendshipscreate.php:110 +#. 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 "Dibosupl eo heuliañ an implijer : n'eo ket bet kavet ar profil." -#: actions/apifriendshipscreate.php:119 +#. 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 "Diposubl eo heuliañ an implijer : war ho listenn emañ %s dija." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "" "Diposupl eo paouez heuliañ an implijer : N'eo ket bet kavet an implijer." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Ne c'hallit ket chom hep ho heuliañ hoc'h-unan." -#: actions/apifriendshipsexists.php:91 +#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists. +#: actions/apifriendshipsexists.php:88 #, fuzzy msgid "Two valid IDs or screen_names must be supplied." msgstr "Rankout a reoc'h reiñ daou id pe lesanv." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Diposubl eo termeniñ an implijer mammenn." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Diposubl eo kavout an implijer pal." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 #, fuzzy @@ -459,7 +510,7 @@ msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -467,7 +518,7 @@ msgstr "Implijet eo dija al lesanv-se. Klaskit unan all." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -476,7 +527,7 @@ msgstr "N'eo ket ul lesanv mat." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -485,134 +536,167 @@ msgstr "N'eo ket chomlec'h al lec'hienn personel un URL reizh." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Re hir eo an anv klok (255 arouezenn d'ar muiañ)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." +msgstr[1] "Re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Re hir eo al lec'hiadur (255 arouezenn d'ar muiañ)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Re a aliasoù ! %d d'ar muiañ." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Re a aliasoù ! %d d'ar muiañ." +msgstr[1] "Re a aliasoù ! %d d'ar muiañ." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Alias fall : \"%s\"." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Implijet e vez an alias \"%s\" dija. Klaskit gant unan all." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Ne c'hell ket an alias bezañ ar memes hini eget al lesanv." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "N'eo ket bet kavet ar strollad." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Un ezel eus ar strollad-mañ eo dija." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "Stanket oc'h bet eus ar strollad-mañ gant ur merour." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Diposubl eo stagañ an implijer %1$s d'ar strollad %2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "N'oc'h ket ezel eus ar strollad-mañ." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Diposubl eo dilemel an implijer %1$s deus ar strollad %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Strollad %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "Strolladoù %1s m'eo ezel %2s." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Strolladoù %s" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "strolladoù war %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Enporzhiadenn c'hwitet." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "Fichenn direizh." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "Arventenn oauth_token nann-roet." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Fichenn direizh." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "N'oc'h ket aotreet." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -637,7 +721,7 @@ msgid "Invalid nickname / password!" msgstr "Lesanv / ger tremen direizh !" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "Ur fazi 'zo bet en ur ensoc'hañ an avatar" @@ -648,7 +732,7 @@ msgstr "Ur fazi 'zo bet en ur ensoc'hañ an avatar" #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -658,19 +742,29 @@ msgid "Unexpected form submission." msgstr "Kinnig ar furmskrid dic'hortoz." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "C'hoant 'zo gant ur poellad kevreañ gant ho kont" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Aotreañ pe nac'h ar moned" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -679,7 +773,7 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -687,7 +781,7 @@ msgstr "Kont" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -697,7 +791,7 @@ msgstr "Lesanv" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Ger-tremen" @@ -708,7 +802,7 @@ msgstr "Ger-tremen" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -716,86 +810,108 @@ msgid "Cancel" msgstr "Nullañ" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Aotreañ" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "Aotreañ pe nac'hañ ar moned da ditouroù ho kont." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "Nullet eo bet kadarnadenn ar bostelerezh prim." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "N'oc'h ket aotreet." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "N'oc'h ket aotreet." + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Ezhomm en deus an argerzh-mañ ur POST pe un DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Ne c'helloc'h ket dilemel statud un implijer all." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "N'eus ket eus an ali-se." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Ne c'helloc'h ket adlavar ho alioù." +#. 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:541 msgid "Already repeated that notice." msgstr "Kemenn bet adkemeret dija." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Statud diverket." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "N'eo ket bet kavet a statud evit an ID-mañ" #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -803,79 +919,118 @@ msgstr[0] "Re hir eo ! Ment hirañ an ali a zo a %d arouezenn." msgstr[1] "Re hir eo ! Ment hirañ an ali a zo a %d arouezenn." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "N'eo ket bet kavet an hentenn API !" -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, 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] "" msgstr[1] "" -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Diembreget eo ar furmad-se." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Pennroll %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s statud pennroll da %2$s / %2$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Diposubl eo hizivaat ar strollad." + +#. 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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Hizivadennoù a veneg %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 #, fuzzy, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s statud pennroll da %2$s / %2$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Oberezhioù publik %s" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s statud an holl !" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "N'eo ket bet emplementet showForm()." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Adkemeret evit %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Adkemeret eus %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Alioù merket gant %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Hizivadennoù merket gant %1$s e %2$s !" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "Hentenn API war sevel." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "N'eo ket bet kavet." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +#, fuzzy +msgid "User not found." +msgstr "N'eo ket bet kavet an hentenn API !" #: actions/attachment.php:73 msgid "No such attachment." @@ -1502,16 +1657,6 @@ msgstr "Implijet eo dija an anv-mañ. Klaskit unan all." msgid "Description is required." msgstr "Ezhomm 'zo un deskrivadur." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." -msgstr[1] "Re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." - #. 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." @@ -1570,7 +1715,17 @@ msgstr "Rankout a reer bezañ merour evit kemmañ ar strollad." msgid "Use this form to edit the group." msgstr "Leunit ar furmskrid-mañ evit kemmañ dibarzhioù ar strollad." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Re a aliasoù ! %d d'ar muiañ." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Alias fall : \"%s\"" @@ -2727,9 +2882,8 @@ msgstr "Statud ebet er mare-mañ." #. TRANS: This is the title of the form for adding a new application. #: actions/newapplication.php:52 -#, fuzzy msgid "New application" -msgstr "Poellad nevez" +msgstr "Arload nevez" #. TRANS: Client error displayed trying to add a new application while not logged in. #: actions/newapplication.php:65 @@ -2766,11 +2920,6 @@ msgstr "Strollad nevez" msgid "Use this form to create a new group." msgstr "Implijit ar furmskrid-mañ a-benn krouiñ ur strollad nevez." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Kemennadenn nevez" @@ -7866,17 +8015,17 @@ msgid "Moderator" msgstr "Habasker" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "un nebeud eilennoù zo" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "1 vunutenn zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7884,12 +8033,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "1 eurvezh zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7897,12 +8046,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "1 devezh zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7910,12 +8059,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "miz zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7923,7 +8072,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "bloaz zo well-wazh" @@ -7972,18 +8121,3 @@ msgstr "N'eus bet diferet ID implijer ebet." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Re hir eo an anv klok (255 arouezenn d'ar muiañ)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Re hir eo al lec'hiadur (255 arouezenn d'ar muiañ)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Re hir eo ! Ment hirañ ar gemenadenn a zo a %d arouezenn." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Re hir eo ar bio (%d arouezenn d'ar muiañ)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Deskrivit ac'hanoc'h hag ho interestoù, gant %d arouezenn" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 10406cd654..42d7976a05 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -13,72 +13,73 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:03+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:08:48+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Accés" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Paràmetres d'accés al lloc" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Registre" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" "Voleu prohibir als usuaris anònims (que no han iniciat cap sessió) " "visualitzar el lloc?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Privat" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Fes que el registre sigui només amb invitacions." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Només invitació" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Inhabilita els nous registres." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Tancat" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 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 label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text to store form data in the Paths admin panel. @@ -86,7 +87,7 @@ msgstr "Desa els paràmetres d'accés" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -94,29 +95,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Desa" +#. 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 msgid "No such page." msgstr "No existeix la pàgina." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -129,41 +146,42 @@ msgid "No such user." msgstr "No existeix l'usuari." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s i amics, pàgina %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s i amics" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Canal dels amics de %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Canal dels amics de %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Canal dels amics de %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -173,7 +191,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -182,9 +200,9 @@ msgstr "" "Proveu de subscriure més gent, [uniu-vos a un grup](%%action.groups%%) o " "publiqueu quelcom personal." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -195,7 +213,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -204,65 +222,80 @@ msgstr "" "Per què no hi [registreu un compte](%%action.register%%) i sou el primer en " "escriure'n un!" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Un mateix i amics" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualitzacions de %1$s i amics a %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "No s'ha trobat el mètode 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Aquest mètode requereix POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -271,16 +304,19 @@ msgstr "" "dels següents: sms, im, none (cap)" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "No s'ha pogut actualitzar l'usuari." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -295,8 +331,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -315,10 +351,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -326,8 +364,9 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "No s'ha pogut actualitzar el vostre disseny." @@ -346,31 +385,31 @@ msgstr "Ha fallat el blocatge de l'usuari." msgid "Unblock user failed." msgstr "Ha fallat el desblocatge de l'usuari." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Missatges directes de %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Tots els missatges directes enviats per %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Missatges directes a %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Tots els missatges directes enviats a %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "No hi ha text al missatge!" @@ -406,7 +445,9 @@ msgid "" msgstr "No t'enviïs missatges a tu mateix, simplement dir-te això." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "No s'ha trobat cap estat amb aquest ID." @@ -422,45 +463,55 @@ msgstr "Aquest estat ja és un preferit." msgid "Could not create favorite." msgstr "No es pot crear el preferit." -#: actions/apifavoritedestroy.php:124 +#. 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 "L'estat no és un preferit." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "No s'ha pogut eliminar el preferit." -#: actions/apifriendshipscreate.php:110 +#. 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 "No es pot deixar de seguir l'usuari: no s'ha trobat l'usuari." -#: actions/apifriendshipscreate.php:119 +#. 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 "No s'ha pogut seguir l'usuari: %s ja està a la vostra llista." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "No es pot deixar de seguir l'usuari: no s'ha trobat l'usuari." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "No podeu deixar de seguir-vos a un mateix." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "Cal proporcionar dos identificadors d'usuari o screen_names." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "No s'ha pogut determinar l'usuari d'origen." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "No s'ha pogut trobar l'usuari de destinació." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -470,7 +521,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -478,7 +529,7 @@ msgstr "Aquest sobrenom ja existeix. Prova un altre. " #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -487,7 +538,7 @@ msgstr "Sobrenom no vàlid." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -496,134 +547,167 @@ msgstr "La pàgina personal no és un URL vàlid." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "El vostre nom sencer és massa llarg (màx. 255 caràcters)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "La descripció és massa llarga (màx. %d caràcters)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "La descripció és massa llarga (màx. %d caràcters)." +msgstr[1] "La descripció és massa llarga (màx. %d caràcters)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "La ubicació és massa llarga (màx. 255 caràcters)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Hi ha massa àlies! Màxim %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Hi ha massa àlies! Màxim %d." +msgstr[1] "Hi ha massa àlies! Màxim %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "L'àlies no és vàlid: «%s»." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "L'àlies «%s» ja està en ús. Proveu-ne un altre." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "L'àlies no pot ser el mateix que el sobrenom." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "No s'ha trobat el grup." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Ja sou membre del grup." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "L'administrador us ha blocat del grup." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "No s'ha pogut afegir l'usuari %1$s al grup %2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "No sou un membre del grup." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "No s'ha pogut eliminar l'usuari %1$s del grup %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Grups de %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "%1$s grups dels que %2$s és membre." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s grups" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "grups sobre %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "La pujada ha fallat." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "No s'ha especificat un testimoni d'inici de sessió vàlid." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "No s'ha proporcionat cap paràmetre oauth_token." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "El testimoni no és vàlid." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "No esteu autoritzat." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -650,7 +734,7 @@ msgid "Invalid nickname / password!" msgstr "Nom d'usuari / contrasenya no vàlid!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "Error de la base de dades en inserir l'usuari de l'aplicació OAuth." @@ -661,7 +745,7 @@ msgstr "Error de la base de dades en inserir l'usuari de l'aplicació OAuth." #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -671,19 +755,32 @@ msgid "Unexpected form submission." msgstr "Enviament de formulari inesperat." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Una aplicació voldria connectar-se al vostre compte" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Permet o denega l'accés" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"L'aplicació %1$s, de %2$s, voldria obtenir " +"l'habilitat de %3$s les dades del vostre compte %4$s. Només " +"hauríeu de donar accés al compte %4$s a terceres parts en què confieu." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -695,7 +792,7 @@ msgstr "" "hauríeu de donar accés al compte %4$s a terceres parts en què confieu." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -703,7 +800,7 @@ msgstr "Compte" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -713,7 +810,7 @@ msgstr "Sobrenom" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasenya" @@ -724,7 +821,7 @@ msgstr "Contrasenya" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -732,84 +829,106 @@ msgid "Cancel" msgstr "Cancel·la" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Permet" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 msgid "Authorize access to your account information." msgstr "Autoritza l'accés a la informació del vostre compte." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 msgid "Authorization canceled." msgstr "S'ha cancel·lat l'autorització." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, fuzzy, php-format msgid "The request token %s has been revoked." msgstr "S'ha denegat i revocat el testimoni de sol·licitud %s." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "No esteu autoritzat." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "No esteu autoritzat." + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Aquest mètode requereix POST o DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "No podeu eliminar l'estat d'un altre usuari." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "No existeix aquest avís." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "No podeu repetir els vostres propis avisos." +#. 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:541 msgid "Already repeated that notice." msgstr "Avís duplicat." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "S'ha eliminat l'estat." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "No s'ha trobat cap estatus amb la ID trobada." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "El client ha de proporcionar un paràmetre 'status' amb un valor." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -817,12 +936,14 @@ msgstr[0] "Massa llarg. La longitud màxima és de %d caràcters." msgstr[1] "Massa llarg. La longitud màxima és de %d caràcters." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "No s'ha trobat el mètode API!" -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -831,67 +952,103 @@ msgstr[0] "" msgstr[1] "" "La mida màxima de l'avís és %d caràcters, incloent l'URL de l'adjunt." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "El format no està implementat." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Preferits de %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s actualitzacions preferides per %2$s / %2$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "No s'ha pogut eliminar el grup %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. +#: actions/apitimelinementions.php:115 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Actualitzacions que mencionen %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 "%1$s actualitzacions que responen a avisos de %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s línia temporal pública" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s actualitzacions de tothom!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Mètode no implementat" + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Repetit a %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Repeticions de %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Avisos etiquetats amb %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualitzacions etiquetades amb %1$s el %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "Mètode API en construcció." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "No s'ha trobat." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "No s'ha trobat el mètode API!" #: actions/attachment.php:73 msgid "No such attachment." @@ -1529,16 +1686,6 @@ msgstr "El nom ja es troba en ús. Proveu-ne un altre." msgid "Description is required." msgstr "Cal una descripció." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "La descripció és massa llarga (màx. %d caràcters)." -msgstr[1] "La descripció és massa llarga (màx. %d caràcters)." - #. 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." @@ -1596,7 +1743,17 @@ msgstr "Heu de ser administrador per editar el grup." msgid "Use this form to edit the group." msgstr "Utilitza aquest formulari per editar el grup." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "La descripció és massa llarga (màx. %d caràcters)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Hi ha massa àlies! Màxim %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "L'àlies no és vàlid «%s»" @@ -2842,11 +2999,6 @@ msgstr "Nou grup" msgid "Use this form to create a new group." msgstr "Utilitza aquest formulari per crear un nou grup." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "la descripció és massa llarga (màx. %d caràcters)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Nou missatge" @@ -8163,17 +8315,17 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "fa pocs segons" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "fa un minut" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8181,12 +8333,12 @@ msgstr[0] "aproximadament fa un minut" msgstr[1] "aproximadament fa %d minuts" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "fa una hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8194,12 +8346,12 @@ msgstr[0] "aproximadament fa una hora" msgstr[1] "aproximadament fa %d hores" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "fa un dia" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8207,12 +8359,12 @@ msgstr[0] "aproximadament fa un dia" msgstr[1] "aproximadament fa %d dies" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "fa un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8220,7 +8372,7 @@ msgstr[0] "aproximadament fa un mes" msgstr[1] "aproximadament fa %d mesos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "fa un any" @@ -8266,18 +8418,3 @@ msgstr "No s'ha especificat cap usuari; s'utilitza l'usuari de reserva." #, php-format msgid "%d entries in backup." msgstr "%d entrades a la còpia de seguretat." - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "El vostre nom sencer és massa llarg (màx. 255 caràcters)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "La ubicació és massa llarga (màx. 255 caràcters)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "És massa llarg. La mida màxima del missatge és %d caràcters." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "La biografia és massa llarga (màx. %d caràcters)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Descriviu qui sou i els vostres interessos en %d caràcters" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index ec028c60ee..8002d4eb4b 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -10,71 +10,72 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:08:50+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\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: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Přístup" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Nastavení přístupu" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Registrace" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Zakázat anonymním (nepřihlášeným) uživatelům prohlížet stránky" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Soukromé" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Registrace jen na pozvánku" #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Pouze na pozvánku" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Znemožnit nové registrace" #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Uzavřené" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" msgstr "uložit nastavení přístupu" +#. 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 to store form data in the Paths admin panel. @@ -82,7 +83,7 @@ msgstr "uložit nastavení přístupu" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -90,29 +91,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Uložit" +#. 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 msgid "No such page." msgstr "Tady žádná taková stránka není." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -125,41 +142,42 @@ msgid "No such user." msgstr "Uživatel neexistuje." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s a přátelé, strana %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s a přátelé" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed pro přátele uživatele: %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed pro přátele uživatele: %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed pro přátele uživatele: %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -169,7 +187,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -178,9 +196,9 @@ msgstr "" "Zkuste začít sledovat víc lidí, [připojte se ke skupině](%%action.groups%%) " "nebo napište něco o sobě." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -191,7 +209,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -200,65 +218,80 @@ msgstr "" "Proč si [nezaregistrovat účet](%%%%action.register%%%%) a pak pošťouchnout " "uživatele %s nebo jim poslat hlášku." -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Vy a přátelé" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Novinky od uživatele %1$s a přátel na %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr " API metoda nebyla nalezena." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Tato metoda vyžaduje POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -266,16 +299,19 @@ msgstr "" "Je nutné zadat parametr s názvem 'device' s jednou z hodnot: sms, im, none." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Nepodařilo se aktualizovat nastavení uživatele" #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -290,8 +326,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -313,10 +349,12 @@ msgstr[2] "" #. 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -324,8 +362,9 @@ msgid "Unable to save your design settings." msgstr "Nelze uložit vaše nastavení designu." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Nelze uložit design." @@ -344,31 +383,31 @@ msgstr "Zablokovat uživatele se nezdařilo." msgid "Unblock user failed." msgstr "Odblokovat uživatele se nezdařilo." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Přímá zpráva od %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Všechny přímé zprávy od uživatele %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Přímé zprávy uživateli %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Všechny přímé zprávy odeslané uživateli %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "zpráva bez textu!" @@ -403,7 +442,9 @@ msgid "" msgstr "Neposílejte si zprávu, potichu si ji pro sebe řekněte." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Hláška s tímto ID nenalezena." @@ -419,45 +460,55 @@ msgstr "Tuto hlášku již máte v oblíbených." msgid "Could not create favorite." msgstr "Nelze vytvořit oblíbenou položku." -#: actions/apifavoritedestroy.php:124 +#. 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 "Tato hláška není oblíbená." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Nelze smazat oblíbenou položku." -#: actions/apifriendshipscreate.php:110 +#. 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 "Nemůžu začít sledovat uživatele, profil nenalezen." -#: actions/apifriendshipscreate.php:119 +#. 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 "Nemohu začít sledovat uživatele: %s je již na vašem seznamu." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Nemohu přestat sledovat uživatele, uživatel nebyl nalezen." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Nemůžete přestat sledovat sami sebe." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "Dva platné ID nebo screen_names musí být dodány." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Nelze určit zdrojového uživatele." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Nepodařilo se najít cílového uživatele." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -465,7 +516,7 @@ msgstr "Přezdívka může obsahovat pouze malá písmena a čísla a žádné m #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -473,7 +524,7 @@ msgstr "Přezdívku již někdo používá. Zkuste jinou." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -482,7 +533,7 @@ msgstr "Není platnou přezdívkou." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -491,134 +542,169 @@ msgstr "Domovská stránka není platná URL." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Celé jméno je moc dlouhé (maximální délka je 255 znaků)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Popis je příliš dlouhý (maximálně %d znaků)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Popis je příliš dlouhý (maximálně %d znaků)." +msgstr[1] "Popis je příliš dlouhý (maximálně %d znaků)." +msgstr[2] "Popis je příliš dlouhý (maximálně %d znaků)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Umístění je příliš dlouhé (maximálně 255 znaků)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Příliš mnoho aliasů! Maximálně %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Příliš mnoho aliasů! Maximálně %d." +msgstr[1] "Příliš mnoho aliasů! Maximálně %d." +msgstr[2] "Příliš mnoho aliasů! Maximálně %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Neplatný alias: \"%s\"." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" se již používá. Zkuste jiný." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Alias nemůže být stejný jako přezdívka." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Skupina nebyla nalezena." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Jste již členem této skupiny." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "Z této skupiny jste byl zablokován adminem." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Nemohu připojit uživatele %1$s do skupiny %2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Nejste členem této skupiny." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Nelze odebrat uživatele %1$S ze skupiny %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "skupiny uživatele %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "skupiny na %1$s, kterych je %2$s členem." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "skupiny uživatele %s" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "skupiny na %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Nahrání se nezdařilo." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "Neplatný přihlašovací token." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "nebyl dodán parametr oauth_token" #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Neplatný token." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "Nejste autorizován." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -643,7 +729,7 @@ msgid "Invalid nickname / password!" msgstr "Neplatné jméno nebo heslo!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "Chyba databáze při vkládání uživatele aplikace OAuth." @@ -654,7 +740,7 @@ msgstr "Chyba databáze při vkládání uživatele aplikace OAuth." #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -664,19 +750,32 @@ msgid "Unexpected form submission." msgstr "Nečekaný požadavek." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Aplikace se chce připojit k vašemu účtu" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Povolit nebo zamítnout přístup" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"Aplikace %1$s od %2$s by chtěla \"%" +"3$s\" data vašeho účtu na %4$s. Měli byste povolit přístup k datům " +"vašeho účtu na %4$s jen třetím stranám kterým věříte.." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -688,7 +787,7 @@ msgstr "" "vašeho účtu na %4$s jen třetím stranám kterým věříte.." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -696,7 +795,7 @@ msgstr "Účet" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -706,7 +805,7 @@ msgstr "Přezdívka" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Heslo" @@ -717,7 +816,7 @@ msgstr "Heslo" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -725,86 +824,108 @@ msgid "Cancel" msgstr "Zrušit" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Povolit" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "Povolit nebo zakázat přístup k vašemu účtu." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "IM potvrzení zrušeno." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, fuzzy, php-format msgid "The request token %s has been revoked." msgstr "Token žádosti %s byl odepřen a zrušen." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Nejste autorizován." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Nejste autorizován." + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Tato metoda vyžaduje POST nebo DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Nesmíte odstraňovat status jiného uživatele." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Žádné takové oznámení." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Nelze opakovat své vlastní oznámení." +#. 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:541 msgid "Already repeated that notice." msgstr "Již jste zopakoval toto oznámení." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Status smazán." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Nenalezen status s tímto ID." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "Klient musí poskytnout 'status' parametr s hodnotou." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -813,12 +934,14 @@ msgstr[1] "Je to příliš dlouhé. Maximální délka sdělení je %d znaků" msgstr[2] "Je to příliš dlouhé. Maximální délka sdělení je %d znaků" #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr " API metoda nebyla nalezena." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -826,67 +949,104 @@ msgstr[0] "Maximální délka notice je %d znaků včetně přiložené URL." msgstr[1] "Maximální délka notice je %d znaků včetně přiložené URL." msgstr[2] "Maximální délka notice je %d znaků včetně přiložené URL." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Nepodporovaný formát." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Oblíbené z %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "Updaty na %1$s od %2$s / %2$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Nelze aktualizovat skupinu." + +#. 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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Updaty zmiňující %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 "updaty na %1$s odpovídající na updaty od %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Veřejná časová osa %s" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "Všechny updaty na %s!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Neimplementovaná metoda." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Opakováno uživatelem %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Opakování %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Noticy taglé %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualizace označené %1$s na %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "API metoda ve výstavbě." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Nebyl nalezen." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +#, fuzzy +msgid "User not found." +msgstr " API metoda nebyla nalezena." #: actions/attachment.php:73 msgid "No such attachment." @@ -1525,17 +1685,6 @@ msgstr "Název již někdo používá. Zkuste jinou" msgid "Description is required." msgstr "Popis je třeba." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Popis je příliš dlouhý (maximálně %d znaků)." -msgstr[1] "Popis je příliš dlouhý (maximálně %d znaků)." -msgstr[2] "Popis je příliš dlouhý (maximálně %d znaků)." - #. 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." @@ -1594,7 +1743,17 @@ msgstr "K úpravě skupiny musíte být admin." msgid "Use this form to edit the group." msgstr "Použijte tento formulář k úpravám skupiny." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Popis je příliš dlouhý (maximálně %d znaků)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Příliš mnoho aliasů! Maximálně %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Neplatný alias: \"%s\"" @@ -2828,11 +2987,6 @@ msgstr "Nová skupina" msgid "Use this form to create a new group." msgstr "Použijte tento formulář k vytvoření nové skupiny." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "Popis je příliš dlouhý (maximálně %d znaků)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Nová zpráva" @@ -8107,17 +8261,17 @@ msgid "Moderator" msgstr "Moderátor" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "před pár sekundami" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "asi před minutou" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8126,12 +8280,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "asi před hodinou" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8140,12 +8294,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "asi přede dnem" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8154,12 +8308,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "asi před měsícem" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8168,7 +8322,7 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "asi před rokem" @@ -8214,18 +8368,3 @@ msgstr "Nebylo zadáno uživatelské ID." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Celé jméno je moc dlouhé (maximální délka je 255 znaků)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Umístění je příliš dlouhé (maximálně 255 znaků)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Je to příliš dlouhé. Maximální délka sdělení je %d znaků." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Umístění příliš dlouhé (maximálně %d znaků)" - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Popište sebe a své zájmy" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 8fef98e9b6..641c8e8b5d 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -19,71 +19,72 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:05+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:08:52+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Zugang" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Zugangseinstellungen speichern" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Registrieren" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" "Anonymen (nicht eingeloggten) Benutzern das Betrachten der Seite verbieten?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Privat" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Registrierung nur bei vorheriger Einladung erlauben." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Nur auf Einladung" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Neuregistrierungen deaktivieren." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Geschlossen" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" msgstr "Zugangs-Einstellungen speichern" +#. 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 to store form data in the Paths admin panel. @@ -91,7 +92,7 @@ msgstr "Zugangs-Einstellungen speichern" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -99,29 +100,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Speichern" +#. 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 msgid "No such page." msgstr "Seite nicht vorhanden" +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -134,41 +151,42 @@ msgid "No such user." msgstr "Unbekannter Benutzer." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s und Freunde, Seite% 2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s und Freunde" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed der Freunde von %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed der Freunde von %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed der Freunde von %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -178,7 +196,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -187,9 +205,9 @@ msgstr "" "Abonniere doch mehr Leute, [tritt einer Gruppe bei](%%action.groups%%) oder " "poste selber etwas." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -200,7 +218,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -209,65 +227,80 @@ msgstr "" "Warum [registrierst du nicht ein Benutzerkonto](%%%%action.register%%%%) und " "gibst %s dann einen Stups oder postest ihm etwas." -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Du und Freunde" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "API-Methode nicht gefunden." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Diese Methode benötigt ein POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -276,16 +309,19 @@ msgstr "" "sms, im, none." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Konnte Benutzerdaten nicht aktualisieren." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -300,8 +336,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -320,10 +356,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -331,8 +369,9 @@ msgid "Unable to save your design settings." msgstr "Konnte Twitter-Einstellungen nicht speichern." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Konnte Benutzerdesign nicht aktualisieren." @@ -351,31 +390,31 @@ msgstr "Blockieren des Benutzers fehlgeschlagen." msgid "Unblock user failed." msgstr "Freigeben des Benutzers fehlgeschlagen." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Direkte Nachrichten von %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Alle von %s gesendeten direkten Nachrichten" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Direkte Nachrichten an %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Alle an %s gesendeten direkten Nachrichten" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Fehlender Nachrichtentext!" @@ -413,7 +452,9 @@ msgstr "" "Schicke dir selbst keine Nachrichten; sag es dir stattdessen einfach leise." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Keine Nachricht mit dieser ID gefunden." @@ -429,46 +470,56 @@ msgstr "Diese Nachricht ist bereits ein Favorit!" msgid "Could not create favorite." msgstr "Konnte keinen Favoriten erstellen." -#: actions/apifavoritedestroy.php:124 +#. 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 "Diese Nachricht ist kein Favorit!" -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Konnte Favoriten nicht löschen." -#: actions/apifriendshipscreate.php:110 +#. 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 "Konnte Benutzer nicht folgen: Profil nicht gefunden" -#: actions/apifriendshipscreate.php:119 +#. 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 "" "Kann Benutzer %s nicht folgen: schon in deiner Kontaktliste eingetragen" -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Kann Benutzer nicht entfolgen: Benutzer nicht gefunden." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Du kannst dich nicht selbst entfolgen!" -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "Zwei gültige IDs oder Benutzernamen müssen angegeben werden." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Konnte öffentlichen Stream nicht abrufen." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Konnte keine Statusmeldungen finden." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -478,7 +529,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -486,7 +537,7 @@ msgstr "Benutzername wird bereits verwendet. Suche dir einen anderen aus." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -495,7 +546,7 @@ msgstr "Ungültiger Benutzername." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -505,132 +556,163 @@ msgstr "" #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 -#, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Der bürgerliche Name ist zu lang (maximal 255 Zeichen)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 #, php-format -msgid "Description is too long (max %d chars)." -msgstr "Die Beschreibung ist zu lang (max. %d Zeichen)." +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Die Beschreibung ist zu lang (max. %d Zeichen)." +msgstr[1] "Die Beschreibung ist zu lang (max. %d Zeichen)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 -#, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 #, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Zu viele Pseudonyme! Maximale Anzahl ist %d." +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Zu viele Pseudonyme! Maximal eins ist erlaubt." +msgstr[1] "Zu viele Pseudonyme! Maximal %d sind erlaubt." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Ungültiges Alias: „%s“" -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Benutzername „%s“ wird bereits verwendet. Suche dir einen anderen aus." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Alias kann nicht das gleiche wie der Spitzname sein." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Gruppe nicht gefunden!" +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Du bist bereits Mitglied dieser Gruppe" +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "Der Admin dieser Gruppe hat dich blockiert." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Konnte Benutzer %1$s nicht der Gruppe %2$s hinzufügen." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Du bist kein Mitglied dieser Gruppe." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Konnte Benutzer %1$s nicht aus der Gruppe %2$s entfernen." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Gruppen von %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "%1$s Gruppen in denen %2$s Mitglied ist" -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s Gruppen" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "Gruppen von %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Hochladen fehlgeschlagen." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 msgid "Invalid request token or verifier." msgstr "Anmelde-Token ungültig oder abgelaufen." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "Kein oauth_token Parameter angegeben." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 msgid "Invalid request token." msgstr "Ungültiges Token." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "Du bist nicht autorisiert." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -655,7 +737,7 @@ msgid "Invalid nickname / password!" msgstr "Benutzername oder Passwort falsch." #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "Datenbankfehler beim Einfügen des OAuth-Programm-Benutzers." @@ -666,7 +748,7 @@ msgstr "Datenbankfehler beim Einfügen des OAuth-Programm-Benutzers." #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -676,19 +758,32 @@ msgid "Unexpected form submission." msgstr "Unerwartete Formulareingabe." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Ein Programm will eine Verbindung zu deinem Konto aufbauen" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Zugriff erlauben oder ablehnen" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"Das Programm %1$s von %2$s würde gerne " +"%3$s bei deinem %4$s Zugang. Du solltest nur " +"vertrauenswürdigen Quellen Erlaubnis zu deinem %4$s Zugang geben." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -700,14 +795,14 @@ msgstr "" "vertrauenswürdigen Quellen Erlaubnis zu deinem %4$s Zugang geben." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 msgctxt "LEGEND" msgid "Account" msgstr "Profil" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -717,7 +812,7 @@ msgstr "Benutzername" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Passwort" @@ -728,7 +823,7 @@ msgstr "Passwort" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -736,38 +831,54 @@ msgid "Cancel" msgstr "Abbrechen" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 msgctxt "BUTTON" msgid "Allow" msgstr "Erlauben" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 msgid "Authorize access to your account information." msgstr "Zugang zu deinem Benutzerkonto autorisieren." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 msgid "Authorization canceled." msgstr "Authorisierung abgebrochen." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "Die Anfrage %s wurde gesperrt und widerrufen." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Du hast %s erfolgreich authorisiert." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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 +#, fuzzy +msgid "" +"Please return to the application and enter the following security code to " +"complete the process." +msgstr "" +"Bitte kehre nach %s zurück und geben den folgenden Sicherheitscode ein, um " +"den Vorgang abzuschließen." + +#. 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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Du hast %s erfolgreich authorisiert." + +#. 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 " @@ -776,39 +887,48 @@ msgstr "" "Bitte kehre nach %s zurück und geben den folgenden Sicherheitscode ein, um " "den Vorgang abzuschließen." -#: actions/apistatusesdestroy.php:112 +#. 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 "Diese Methode benötigt ein POST oder DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Du kannst den Status eines anderen Benutzers nicht löschen." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Unbekannte Nachricht." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen." +#. 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:541 msgid "Already repeated that notice." msgstr "Nachricht bereits wiederholt" -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Status gelöscht." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Keine Nachricht mit dieser ID gefunden." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" "Der Client muss einen „status“-Parameter mit einen Wert zur Verfügung " @@ -816,7 +936,7 @@ msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, 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." @@ -826,11 +946,13 @@ msgstr[1] "" "Das war zu lang. Die Länge einer Nachricht ist auf %d Zeichen beschränkt." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 msgid "Parent notice not found." msgstr "API-Methode nicht gefunden." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -841,67 +963,103 @@ msgstr[1] "" "Die maximale Größe von Nachrichten ist %d Zeichen, inklusive der URL der " "Anhänge" -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Bildformat wird nicht unterstützt." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Favoriten von %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s Aktualisierung in den Favoriten von %2$s / %2$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Konnte %s-Gruppe nicht löschen." + +#. 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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Aktualisierungen erwähnen %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 "Nachrichten von %1$s, die auf Nachrichten von %2$s / %3$s antworten." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s öffentliche Zeitleiste" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s Nachrichten von allen!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Nicht unterstützte Methode." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Antworten an %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Antworten von %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Nachrichten, die mit %s getagt sind" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualisierungen mit %1$s getagt auf %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "API-Methode im Aufbau." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Nicht gefunden." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "API-Methode nicht gefunden." #: actions/attachment.php:73 msgid "No such attachment." @@ -1535,16 +1693,6 @@ msgstr "Der Name wird bereits verwendet. Suche dir einen anderen aus." msgid "Description is required." msgstr "Beschreibung ist erforderlich." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Die Beschreibung ist zu lang (max. %d Zeichen)." -msgstr[1] "Die Beschreibung ist zu lang (max. %d Zeichen)." - #. 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." @@ -1603,7 +1751,17 @@ msgstr "Du musst ein Admin sein, um die Gruppe zu bearbeiten" msgid "Use this form to edit the group." msgstr "Benutze dieses Formular, um die Gruppe zu bearbeiten." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Die Beschreibung ist zu lang (max. %d Zeichen)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Zu viele Pseudonyme! Maximale Anzahl ist %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Ungültiges Stichwort: „%s“" @@ -2811,7 +2969,6 @@ msgstr "Kein aktueller Status." #. TRANS: This is the title of the form for adding a new application. #: actions/newapplication.php:52 -#, fuzzy msgid "New application" msgstr "Neues Programm" @@ -2825,7 +2982,6 @@ msgid "Use this form to register a new application." msgstr "Benutzer dieses Formular, um eine neues Programm zu erstellen." #: actions/newapplication.php:169 -#, fuzzy msgid "Name is too long (maximum 255 chars)." msgstr "Der Name ist zu lang (maximal 255 Zeichen)." @@ -2834,7 +2990,6 @@ msgid "Source URL is required." msgstr "Quell-URL ist erforderlich." #: actions/newapplication.php:199 -#, fuzzy msgid "Organization is too long (maximum 255 chars)." msgstr "Die angegebene Organisation ist zu lang (maximal 255 Zeichen)." @@ -2850,11 +3005,6 @@ msgstr "Neue Gruppe" msgid "Use this form to create a new group." msgstr "Benutze dieses Formular, um eine neue Gruppe zu erstellen." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "Die Beschreibung ist zu lang (max. %d Zeichen)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Neue Nachricht" @@ -3652,7 +3802,7 @@ msgstr "" #. 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:230 -#, fuzzy, php-format +#, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." msgstr[0] "Die Biografie ist zu lang (maximal ein Zeichen)." @@ -3665,9 +3815,8 @@ msgstr "Keine Zeitzone ausgewählt." #. TRANS: Validation error in form for profile settings. #: actions/profilesettings.php:281 -#, fuzzy msgid "Language is too long (maximum 50 characters)." -msgstr "Die eingegebene Sprache ist zu lang (maximal 50 Zeichen)" +msgstr "Die eingegebene Sprache ist zu lang (maximal 50 Zeichen)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. @@ -8156,17 +8305,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "vor wenigen Sekunden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "vor einer Minute" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8174,12 +8323,12 @@ msgstr[0] "vor ca. einer Minute" msgstr[1] "vor ca. %d Minuten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "vor einer Stunde" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8187,12 +8336,12 @@ msgstr[0] "vor ca. einer Stunde" msgstr[1] "vor ca. %d Stunden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "vor einem Tag" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8200,12 +8349,12 @@ msgstr[0] "vor ca. einem Tag" msgstr[1] "vor ca. %d Tagen" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "vor einem Monat" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8213,7 +8362,7 @@ msgstr[0] "vor ca. einem Monat" msgstr[1] "vor ca. %d Monaten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "vor einem Jahr" @@ -8238,11 +8387,11 @@ 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:404 -#, fuzzy, php-format +#, 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] "" -"Nachricht zu lang - maximal %1$d Zeichen erlaubt, du hast %2$d gesendet." +"Nachricht zu lang - maximal ein Zeichen erlaubt, du hast %2$d gesendet." msgstr[1] "" "Nachricht zu lang - maximal %1$d Zeichen erlaubt, du hast %2$d gesendet." @@ -8259,19 +8408,3 @@ msgstr "Keine Benutzer-ID angegeben" #, php-format msgid "%d entries in backup." msgstr "%d Einträge im Backup." - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Der vollständige Name ist zu lang (maximal 255 Zeichen)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "" -#~ "Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist %d Zeichen." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Die Biografie ist zu lang (max. %d Zeichen)" - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Beschreibe dich selbst und deine Interessen in %d Zeichen" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 255a38d73c..d5813c0338 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -13,70 +13,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:06+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:08:54+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\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: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Access" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Site access settings" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Registration" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Prohibit anonymous users (not logged in) from viewing site?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Private" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Make registration invitation only." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Invite only" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Disable new registrations." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Closed" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" msgstr "Save access settings" +#. 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 to store form data in the Paths admin panel. @@ -84,7 +85,7 @@ msgstr "Save access settings" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -92,29 +93,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Save" +#. 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 msgid "No such page." msgstr "No such page." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -127,41 +144,42 @@ msgid "No such user." msgstr "No such user." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s and friends, page %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s and friends" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed for friends of %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed for friends of %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed for friends of %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -170,7 +188,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -179,9 +197,9 @@ msgstr "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -192,7 +210,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -201,65 +219,80 @@ msgstr "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to them." -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "You and friends" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Updates from %1$s and friends on %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "API method not found." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "This method requires a POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -268,16 +301,19 @@ msgstr "" "none." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Could not update user." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -292,8 +328,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -312,10 +348,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -323,8 +361,9 @@ msgid "Unable to save your design settings." msgstr "Unable to save your design settings." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Could not update your design." @@ -343,31 +382,31 @@ msgstr "Block user failed." msgid "Unblock user failed." msgstr "Unblock user failed." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Direct messages from %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "All the direct messages sent from %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Direct messages to %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "All the direct messages sent to %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "No message text!" @@ -401,7 +440,9 @@ msgstr "" "Do not send a message to yourself; just say it to yourself quietly instead." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "No status found with that ID." @@ -417,45 +458,55 @@ msgstr "This status is already a favourite." msgid "Could not create favorite." msgstr "Could not create favourite." -#: actions/apifavoritedestroy.php:124 +#. 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 "That status is not a favourite." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Could not delete favourite." -#: actions/apifriendshipscreate.php:110 +#. 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 "Could not follow user: profile not found." -#: actions/apifriendshipscreate.php:119 +#. 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 "Could not follow user: %s is already on your list." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Could not unfollow user: User not found." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "You cannot unfollow yourself." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "Two valid IDs or screen_names must be supplied." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Could not determine source user." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Could not find target user." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -463,7 +514,7 @@ msgstr "Nickname must have only lowercase letters and numbers, and no spaces." #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -471,7 +522,7 @@ msgstr "Nickname already in use. Try another one." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -480,7 +531,7 @@ msgstr "Not a valid nickname." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -489,132 +540,165 @@ msgstr "Homepage is not a valid URL." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Full name is too long (max 255 chars)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Description is too long (max %d chars)" +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Description is too long (max %d chars)" +msgstr[1] "Description is too long (max %d chars)" +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Location is too long (max 255 chars)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Too many aliases! Maximum %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Too many aliases! Maximum %d." +msgstr[1] "Too many aliases! Maximum %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Invalid alias: \"%s\"." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" already in use. Try another one." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Alias can't be the same as nickname." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Group not found." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "You are already a member of that group." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "You have been blocked from that group by the admin." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Could not join user %1$s to group %2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "You are not a member of this group." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Could not remove user %1$s from group %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "%s's groups" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "%1$s groups %2$s is a member of." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s groups" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "groups on %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Upload failed." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 msgid "Invalid request token or verifier." msgstr "Invalid request token or verifier." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "No oauth_token parameter provided." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 msgid "Invalid request token." msgstr "Invalid request token." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "You are not authorised." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -639,7 +723,7 @@ msgid "Invalid nickname / password!" msgstr "Invalid nickname / password!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "Database error inserting OAuth application user." @@ -650,7 +734,7 @@ msgstr "Database error inserting OAuth application user." #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -660,19 +744,32 @@ msgid "Unexpected form submission." msgstr "Unexpected form submission." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "An application would like to connect to your account" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Allow or deny access" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"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." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -684,7 +781,7 @@ msgstr "" "give access to your %4$s account to third parties you trust." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -692,7 +789,7 @@ msgstr "Account" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -702,7 +799,7 @@ msgstr "Nickname" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Password" @@ -713,7 +810,7 @@ msgstr "Password" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -721,84 +818,106 @@ msgid "Cancel" msgstr "Cancel" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Allow" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 msgid "Authorize access to your account information." msgstr "Authorise access to your account information." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 msgid "Authorization canceled." msgstr "Authorisation cancelled." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "The request token %s has been revoked." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "You have successfully authorised %s." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "You have successfully authorised %s." + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "This method requires a POST or DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "You may not delete another user's status." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "No such notice." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Cannot repeat your own notice." +#. 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:541 msgid "Already repeated that notice." msgstr "Already repeated that notice." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Status deleted." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "No status with that ID found." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -806,79 +925,117 @@ msgstr[0] "That's too long. Max notice size is %d chars." msgstr[1] "That's too long. Max notice size is %d chars." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "API method not found." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, 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] "Max notice size is %d chars, including attachment URL." msgstr[1] "Max notice size is %d chars, including attachment URL." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Unsupported format." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Favourites from %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s updates favourited by %2$s / %2$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Could not delete group %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. +#: actions/apitimelinementions.php:115 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Updates mentioning %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 "%1$s updates that reply to updates from %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s public timeline" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s updates from everyone!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "showForm() not implemented." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Repeated to %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Repeats of %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Notices tagged with %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Updates tagged with %1$s on %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "API method under construction." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Not found." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "API method not found." #: actions/attachment.php:73 msgid "No such attachment." @@ -1512,16 +1669,6 @@ msgstr "Name already in use. Try another one." msgid "Description is required." msgstr "Description is required." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Description is too long (max %d chars)" -msgstr[1] "Description is too long (max %d chars)" - #. 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." @@ -1580,7 +1727,17 @@ msgstr "You must be an admin to edit the group." msgid "Use this form to edit the group." msgstr "Use this form to edit the group." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Description is too long (max %d chars)" + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Too many aliases! Maximum %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Invalid alias: \"%s\"" @@ -2808,11 +2965,6 @@ msgstr "New group" msgid "Use this form to create a new group." msgstr "Use this form to create a new group." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "description is too long (max %d chars)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "New message" @@ -7937,17 +8089,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "a few seconds ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "about a minute ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7955,12 +8107,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "about an hour ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7968,12 +8120,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "about a day ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7981,12 +8133,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "about a month ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7994,7 +8146,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "about a year ago" @@ -8038,18 +8190,3 @@ msgstr "No user specified; using backup user." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Full name is too long (max 255 chars)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Location is too long (max 255 chars)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "That's too long. Max message size is %d chars." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Bio is too long (max %d chars)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Describe yourself and your interests in %d chars" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 5c28893c5a..f577725db0 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -15,70 +15,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:07+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:08:55+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\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: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Atingo" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Retejo-atinga agordo" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Registrado" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Ĉu malpermesi al anonimaj uzantoj (ne ensalutintaj) vidi retejon?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Privata" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Permesi registriĝon nur perinvitan." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Nur per invito" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Malpermesi novan registriĝon." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Fermita" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" msgstr "Konservu atingan agordon" +#. 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 to store form data in the Paths admin panel. @@ -86,7 +87,7 @@ msgstr "Konservu atingan agordon" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -94,29 +95,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Konservu" +#. 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 msgid "No such page." msgstr "Ne estas tiu paĝo." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -129,41 +146,42 @@ msgid "No such user." msgstr "Ne ekzistas tiu uzanto." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s kaj amikoj, paĝo %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s kaj amikoj" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Fluo por amikoj de %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Fluo por amikoj de %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Fluo por amikoj de %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -172,7 +190,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -181,9 +199,9 @@ msgstr "" "Provu aboni pli da homoj, [aniĝu al grupo](%%action.groups%%) aŭ afiŝu ion " "vi mem." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -194,7 +212,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -203,65 +221,80 @@ msgstr "" "Kial ne [krei konton](%%%%action.register%%%%) kaj poste puŝeti %s aŭ afiŝi " "avizon al li?" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Vi kaj amikoj" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Ĝisdatiĝoj de %1$s kaj amikoj ĉe %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "Metodo de API ne troviĝas." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Ĉi tiu metodo bezonas POST-on." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -270,16 +303,19 @@ msgstr "" "'im', 'none'." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Malsukcesis ĝisdatigi uzanton" #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -294,8 +330,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -314,10 +350,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -325,8 +363,9 @@ msgid "Unable to save your design settings." msgstr "Malsukcesis konservi vian desegnan agordon" #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Malsukcesis ĝisdatigi vian desegnon." @@ -345,31 +384,31 @@ msgstr "Ne sukcesis bloki uzanton." msgid "Unblock user failed." msgstr "Ne sukcesis malbloki uzanton." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Rektaj mesaĝoj de %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Ĉiuj rektaj mesaĝoj senditaj de %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Rektaj mesaĝoj al %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Ĉiuj rektaj mesaĝoj senditaj al %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Sen mesaĝteksto!" @@ -403,7 +442,9 @@ msgid "" msgstr "Ne sendu mesaĝon al vi mem! Simple suspiru anstataŭ." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Stato kun tiu ID ne trovitas." @@ -419,45 +460,55 @@ msgstr "Ĉi tiu stato jam estas ŝatata." msgid "Could not create favorite." msgstr "Malsukcesis krei ŝataton." -#: actions/apifavoritedestroy.php:124 +#. 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 "La stato ne estas ŝatata." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Malsukcesis forigi ŝataton." -#: actions/apifriendshipscreate.php:110 +#. 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 "Malsukcesis aboni uzanton: profilo ne troviĝas." -#: actions/apifriendshipscreate.php:119 +#. 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 "Ne povas aboni uzanton: %s estas jam en via listo." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Ne povas malaboni uzanton. Uzanto ne troviĝas." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Vi ne povas malaboni vin mem." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "Du uzantajn IDojn aŭ montronomojn vi devas specifi." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr " Malsukcesis certigi fontan uzanton." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Malsukcesis trovi celan uzanton." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -466,7 +517,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -474,7 +525,7 @@ msgstr "La uzantnomo jam uziĝis. Provu ion alian." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -483,7 +534,7 @@ msgstr "Ne valida kromnomo." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -492,132 +543,165 @@ msgstr "Ĉefpaĝo ne estas valida URL." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Plennomo estas tro longa (maksimume 255 literoj)" -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Priskribo estas tro longa (maksimume %d signoj)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Priskribo estas tro longa (maksimume %d signoj)." +msgstr[1] "Priskribo estas tro longa (maksimume %d signoj)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "lokonomo estas tro longa (maksimume 255 literoj)" -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Tro da alinomoj! Maksimume %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Tro da alinomoj! Maksimume %d." +msgstr[1] "Tro da alinomoj! Maksimume %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "La alinomo estas nevalida: \"%*s\"." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "La alinomo \"%s\" estas jam okupita. Provu ion alian." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "La alinomo devas ne esti sama al la kromnomo." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Grupo ne troviĝas." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Vi estas jam grupano." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "La administranto blokis vin de tiu grupo." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "La uzanto %1$*s ne povas aliĝi al la grupo %2$*s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Vi ne estas grupano." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Malsukcesis forigi uzanton %1$s de grupo %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Grupoj de %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "Grupoj de %2$s ĉe %1$s." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Grupoj de %s" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "grupoj ĉe %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Malsukcesis alŝuti" #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 msgid "Invalid request token or verifier." msgstr "Malvalida peto-ĵetono aŭ verigilo." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "Ne oauth_token parametro provizita." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 msgid "Invalid request token." msgstr "Nevalida peto-ĵetono." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "Vi ne estas rajtigita." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -642,7 +726,7 @@ msgid "Invalid nickname / password!" msgstr "Nevalida kromnomo / pasvorto!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "Datumbaza eraro enigi la uzanton de *OAuth-aplikaĵo." @@ -653,7 +737,7 @@ msgstr "Datumbaza eraro enigi la uzanton de *OAuth-aplikaĵo." #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -663,19 +747,32 @@ msgid "Unexpected form submission." msgstr "Neatendita formo-sendo." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Aplikaĵo volas konekti al via konto" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Permesi aŭ malpermesi atingon" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"La aplikaĵo %1$s de %2$s volas la kapablon " +"%3$s vian %4$s kontdatumon. Vi devas doni atingon nur al " +"via %4$s konto al triaj partioj, kiujn vi fidas." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -687,14 +784,14 @@ msgstr "" "via %4$s konto al triaj partioj, kiujn vi fidas." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 msgctxt "LEGEND" msgid "Account" msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -704,7 +801,7 @@ msgstr "Kromnomo" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Pasvorto" @@ -715,7 +812,7 @@ msgstr "Pasvorto" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -723,38 +820,53 @@ msgid "Cancel" msgstr "Nuligi" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 msgctxt "BUTTON" msgid "Allow" msgstr "Permesi" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 msgid "Authorize access to your account information." msgstr "Permesi atingon al viaj kontdatenoj." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 msgid "Authorization canceled." msgstr "Rajtigo nuliĝis." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "La peto-ĵetono %s estis eksvalidigita." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Vi sukcese rajtigis %s." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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 +#, fuzzy +msgid "" +"Please return to the application and enter the following security code to " +"complete the process." +msgstr "" +"Bonvolu reiri al %s kaj enigu la jenan sekureco-kodo por plenumi la procezon." + +#. 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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Vi sukcese rajtigis %s." + +#. 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 " @@ -762,45 +874,54 @@ msgid "" msgstr "" "Bonvolu reiri al %s kaj enigu la jenan sekureco-kodo por plenumi la procezon." -#: actions/apistatusesdestroy.php:112 +#. 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 "Ĉi tiu metodo bezonas POST aǔ DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Vi ne povas forigi la staton de alia uzanto." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Ne estas tiu avizo." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Vi ne povas ripeti vian propran avizon." +#. 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:541 msgid "Already repeated that notice." msgstr "La avizo jam ripetiĝis." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Stato forigita." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Neniu stato kun tiu ID troviĝas." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "Kliento devas providi al \"stato\"-parametro valoron." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -808,12 +929,14 @@ msgstr[0] "Tro longas. Longlimo por avizo estas %d signoj." msgstr[1] "Tro longas. Longlimo por avizo estas %d signoj." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "Metodo de API ne troviĝas." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -822,67 +945,104 @@ msgstr[0] "" msgstr[1] "" "Longlimo por avizo estas %d signoj, enkalkulante ankaŭ la retadresojn." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Formato ne subtenata." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$*s / Ŝatato de %2$*s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$*s ĝisdatigoj ŝatataj de %2$*s / %2$*s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Malsukcesis ĝisdatigi grupon." + +#. 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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Ĝisdatigoj kiuj mencias %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 "%1$s ĝisdatigoj kiuj respondas al ĝisdatigoj de %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s publika tempstrio" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s ĝisdatigoj de ĉiuj!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Nerealiĝita metodo" + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Ripetita al %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Ripetoj de %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Avizoj etikeditaj %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Ĝisdatigoj etikeditaj %1$s ĉe %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "API-metodo farata." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Ne troviĝas." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +#, fuzzy +msgid "User not found." +msgstr "Metodo de API ne troviĝas." #: actions/attachment.php:73 msgid "No such attachment." @@ -1518,16 +1678,6 @@ msgstr "La nomo jam uziĝis. Provu ion alian." msgid "Description is required." msgstr "Priskribo necesas." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Priskribo estas tro longa (maksimume %d signoj)." -msgstr[1] "Priskribo estas tro longa (maksimume %d signoj)." - #. 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." @@ -1586,7 +1736,17 @@ msgstr "Vi devas esti administranto por redakti la grupon." msgid "Use this form to edit the group." msgstr "Uzas ĉi tiun formularon por redakti la grupon." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Priskribo estas tro longa (maksimume %d signoj)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Tro da alinomoj! Maksimume %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Nevalida alinomo: \"%s\"" @@ -2806,11 +2966,6 @@ msgstr "Nova grupo" msgid "Use this form to create a new group." msgstr "Uzas ĉi tiun formularon por krei novan grupon." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "Priskribo estas tro longa (maksimume %d signoj)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Nova mesaĝo" @@ -6746,7 +6901,7 @@ msgstr "" "reply - respondi la lastan avizon de uzanto\n" "join - aniĝi al grupo\n" "login - havi ligilon por ensaluti al reta interfaco\n" -"drop - foriri de gruop\n" +"drop - foriri el grupo\n" "stats - legi vian staton\n" "stop - same kiel 'off'\n" "quit - same kiel 'off'\n" @@ -7024,7 +7179,7 @@ msgstr "Grupoj kun plej multe da avizoj" #: lib/grouptagcloudsection.php:57 #, php-format msgid "Tags in %s group's notices" -msgstr "Etikedoj en avizoj de gruop %s" +msgstr "Etikedoj en avizoj de grupo %s" #. TRANS: Client exception 406 #: lib/htmloutputter.php:104 @@ -8041,17 +8196,17 @@ msgid "Moderator" msgstr "Moderanto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "antaŭ kelkaj sekundoj" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "antaŭ ĉirkaŭ unu minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8059,12 +8214,12 @@ msgstr[0] "antaŭ ĉirkaŭ unu minuto" msgstr[1] "antaŭ ĉirkaŭ %d minutoj" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "antaŭ ĉirkaŭ unu horo" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8072,12 +8227,12 @@ msgstr[0] "antaŭ ĉirkaŭ unu horo" msgstr[1] "antaŭ ĉirkaŭ %d horoj" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "antaŭ ĉirkaŭ unu tago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8085,12 +8240,12 @@ msgstr[0] "antaŭ ĉirkaŭ unu tago" msgstr[1] "antaŭ ĉirkaŭ %d tagoj" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "Antaŭ ĉrikaŭ unu monato" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8098,7 +8253,7 @@ msgstr[0] "antaŭ ĉirkaŭ unu monato" msgstr[1] "antaŭ ĉirkaŭ %d monatoj" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "antaŭ ĉirkaŭ unu jaro" @@ -8143,18 +8298,3 @@ msgstr "Neniu uzanto-ID specifiĝas." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Plennomo estas tro longa (maksimume 255 literoj)" - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "lokonomo estas tro longa (maksimume 255 literoj)" - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Tro longas. Mesaĝa longlimo estas %d signoj." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Biografio tro longas (maksimume %d literoj)" - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Priskribu vin mem kaj viajn ŝatokupojn per ne pli ol %d signoj" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 4ed0cbbca1..b9de34799f 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -16,70 +16,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:08+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:08:56+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Acceder" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Configuración de acceso de la web" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Registro" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "¿Prohibir a los usuarios anónimos (no conectados) ver el sitio?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Privado" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Haz que el registro sea sólo con invitaciones." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Invitar sólo" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Inhabilitar nuevos registros." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Cerrado" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 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 label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text to store form data in the Paths admin panel. @@ -87,7 +88,7 @@ msgstr "Guardar la configuración de acceso" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -95,29 +96,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Guardar" +#. 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 msgid "No such page." msgstr "No existe tal página." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -130,41 +147,42 @@ msgid "No such user." msgstr "No existe ese usuario." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s y sus amistades, página %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s y sus amistades" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed de los amigos de %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed de los amigos de %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed de los amigos de %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -174,7 +192,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -183,9 +201,9 @@ msgstr "" "Esta es la línea temporal de %s y amistades, pero nadie ha publicado nada " "todavía." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -196,7 +214,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -205,65 +223,80 @@ msgstr "" "Por qué no [registrar una cuenta](%%%%action.register%%%%) y luego zarandear " "a %s o publicar una nota a ellos?" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Tú y tus amistades" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "¡Actualizaciones de %1$s y sus amistades en %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "Método de API no encontrado." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Este método requiere un POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -272,16 +305,19 @@ msgstr "" "elegir entre: sms, im, ninguno." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "No se pudo actualizar el usuario." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -296,8 +332,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -316,10 +352,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -327,8 +365,9 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "No se pudo actualizar tu diseño." @@ -347,31 +386,31 @@ msgstr "Falló bloquear usuario." msgid "Unblock user failed." msgstr "Falló desbloquear usuario." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Mensajes directos de %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Todos los mensajes directos enviados desde %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Mensajes directos a %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Todos los mensajes directos enviados a %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "¡Sin texto de mensaje!" @@ -405,7 +444,9 @@ msgid "" msgstr "No te auto envíes un mensaje; dícetelo a ti mismo." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "No se encontró estado para ese ID" @@ -421,45 +462,55 @@ msgstr "Este status ya está en favoritos." msgid "Could not create favorite." msgstr "No se pudo crear favorito." -#: actions/apifavoritedestroy.php:124 +#. 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 "Este status no es un favorito." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "No se pudo borrar favorito." -#: actions/apifriendshipscreate.php:110 +#. 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 "No se pudo seguir al usuario: Perfil no encontrado." -#: actions/apifriendshipscreate.php:119 +#. 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 "No puede seguir al usuario: %s ya esta en su lista." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "No se pudo dejar de seguir al usuario. Usuario no encontrado" +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "No puedes dejar de seguirte a ti mismo." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "Deben proveerse dos IDs válidos o nombres en pantalla." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "No se pudo determinar el usuario fuente." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "No se pudo encontrar ningún usuario de destino." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -469,7 +520,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -477,7 +528,7 @@ msgstr "El usuario ya existe. Prueba con otro." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -486,7 +537,7 @@ msgstr "Usuario inválido" #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -495,134 +546,167 @@ msgstr "La página de inicio no es un URL válido." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Tu nombre es demasiado largo (max. 255 carac.)" -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "La descripción es demasiado larga (máx. %d caracteres)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "La descripción es demasiado larga (máx. %d caracteres)." +msgstr[1] "La descripción es demasiado larga (máx. %d caracteres)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "La ubicación es demasiado larga (máx. 255 caracteres)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "¡Muchos seudónimos! El máximo es %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "¡Muchos seudónimos! El máximo es %d." +msgstr[1] "¡Muchos seudónimos! El máximo es %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Alias inválido: \"%s\"." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "El alias \"%s\" ya está en uso. Intenta usar otro." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "El alias no puede ser el mismo que el usuario." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Grupo no encontrado." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Ya eres miembro de ese grupo" +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "Has sido bloqueado de ese grupo por el administrador." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "No se pudo unir el usuario %s al grupo %s" -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "No eres miembro de este grupo." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "No se pudo eliminar al usuario %1$s del grupo %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Grupos de %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "%1$s grupos %2$s es un miembro de." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Grupos %s" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "Grupos en %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Carga falló." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "Token de acceso inválido especificado." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "No se ha provisto de un parámetro oauth_token." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Token inválido." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "No estás autorizado." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -648,7 +732,7 @@ msgid "Invalid nickname / password!" msgstr "¡Usuario o contraseña inválidos!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "Error de base de datos al insertar usuario de la aplicación OAuth." @@ -659,7 +743,7 @@ msgstr "Error de base de datos al insertar usuario de la aplicación OAuth." #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -669,19 +753,32 @@ msgid "Unexpected form submission." msgstr "Envío de formulario inesperado." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Una aplicación quisiera conectarse a tu cuenta" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Permitir o denegar el acceso" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"La aplicación %1$s por %2$s solicita " +"permiso para %3$s la información de tu cuenta %4$s. Sólo " +"debes dar acceso a tu cuenta %4$s a terceras partes en las que confíes." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -693,7 +790,7 @@ msgstr "" "debes dar acceso a tu cuenta %4$s a terceras partes en las que confíes." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -701,7 +798,7 @@ msgstr "Cuenta" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -711,7 +808,7 @@ msgstr "Usuario" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contraseña" @@ -722,7 +819,7 @@ msgstr "Contraseña" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -730,86 +827,108 @@ msgid "Cancel" msgstr "Cancelar" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Permitir" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "Permitir o denegar el acceso a la información de tu cuenta." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "Confirmación de mensajería instantánea cancelada." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, fuzzy, php-format msgid "The request token %s has been revoked." msgstr "El token de solicitud %2 ha sido denegado y revocado." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "No estás autorizado." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "No estás autorizado." + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Este método requiere un PUBLICAR O ELIMINAR" -#: actions/apistatusesdestroy.php:135 +#. 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 "No puedes borrar el estado de otro usuario." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "No existe ese mensaje." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "No puedes repetir tus propios mensajes" +#. 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:541 msgid "Already repeated that notice." msgstr "Este mensaje ya se ha repetido." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Status borrado." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "No hay estado para ese ID" #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "El cliente debe proveer un parámetro de 'status' con un valor." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -817,12 +936,14 @@ msgstr[0] "El mensaje es muy largo. El tamaño máximo es de %d caracteres." msgstr[1] "El mensaje es muy largo. El tamaño máximo es de %d caracteres." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "Método de API no encontrado." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -831,67 +952,103 @@ msgstr[0] "" msgstr[1] "" "El tamaño máximo del mensaje es %d caracteres, incluyendo el URL adjunto." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Formato no soportado." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Favoritos de %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s actualizaciones favoritas de %2$s / %2$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "No se pudo actualizar el grupo." + +#. 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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Actualizaciones que mencionan %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 "actualizaciones de %1$s en respuesta a las de %2$s / %3$s" -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "línea temporal pública de %s" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "¡Actualizaciones de todos en %s!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Método no implementado." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Repetido a %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Repeticiones de %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Mensajes etiquetados con %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizaciones etiquetadas con %1$s en %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "Método API en construcción." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "No encontrado." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "Método de API no encontrado." #: actions/attachment.php:73 msgid "No such attachment." @@ -1533,16 +1690,6 @@ msgstr "Ese nombre ya está en uso. Prueba con otro." msgid "Description is required." msgstr "Se requiere una descripción" -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "La descripción es demasiado larga (máx. %d caracteres)." -msgstr[1] "La descripción es demasiado larga (máx. %d caracteres)." - #. 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." @@ -1601,7 +1748,17 @@ msgstr "Para editar el grupo debes ser administrador." msgid "Use this form to edit the group." msgstr "Usa este formulario para editar el grupo." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "La descripción es demasiado larga (máx. %d caracteres)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "¡Muchos seudónimos! El máximo es %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Alias inválido: \"%s\"" @@ -2845,11 +3002,6 @@ msgstr "Grupo nuevo " msgid "Use this form to create a new group." msgstr "Usa este formulario para crear un grupo nuevo." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "La descripción es muy larga (máx. %d caracteres)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Nuevo Mensaje " @@ -8177,17 +8329,17 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "hace unos segundos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "hace un minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8195,12 +8347,12 @@ msgstr[0] "hace aproximadamente un minuto" msgstr[1] "hace aproximadamente %d minutos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "hace una hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8208,12 +8360,12 @@ msgstr[0] "hace aproximadamente una hora" msgstr[1] "hace aproximadamente %d horas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "hace un día" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8221,12 +8373,12 @@ msgstr[0] "hace aproximadamente un día" msgstr[1] "hace aproximadamente %d días" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "hace un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8234,7 +8386,7 @@ msgstr[0] "hace aproximadamente un mes" msgstr[1] "hace aproximadamente %d meses" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "hace un año" @@ -8279,18 +8431,3 @@ msgstr "No se ha especificado ID de usuario." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Tu nombre es demasiado largo (max. 255 carac.)" - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "La ubicación es demasiado larga (máx. 255 caracteres)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Demasiado largo. Tamaño máx. de los mensajes es %d caracteres." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "La biografía es muy larga (máx. %d caracteres)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Descríbete y cuéntanos tus intereses en %d caracteres" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 25ffd1fc03..42b056bf7c 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:09+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:08:57+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -23,62 +23,63 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "دسترسی" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "تنظیمات دسترسی وب‌گاه" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "نام‌نویسی" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "از دیدن وب‌گاه توسط کاربران ناشناس (وارد نشده) جلوگیری شود؟" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "خصوصی" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "نام‌نویسی تنها با دعوت‌نامه انجام شود." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "تنها دعوت کردن" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "غیر فعال کردن نام‌نوبسی تازه" #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "بسته‌شده" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" 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 to store form data in the Paths admin panel. @@ -86,7 +87,7 @@ msgstr "ذخیرهٔ تنظیمات دسترسی" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -94,29 +95,45 @@ msgctxt "BUTTON" msgid "Save" 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 msgid "No such page." msgstr "چنین صفحه‌ای وجود ندارد." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -129,41 +146,42 @@ msgid "No such user." msgstr "چنین کاربری وجود ندارد." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s و دوستان، صفحهٔ %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s و دوستان" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "خوراک دوستان %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "خوراک دوستان %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "خوراک دوستان %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -171,7 +189,7 @@ msgstr "این خط‌زمانی %s و دوستانش است، اما هیچ‌ #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -180,9 +198,9 @@ msgstr "" "پیگیر افراد بیش‌تری بشوید [به یک گروه بپیوندید](%%action.groups%%) یا خودتان " "چیزی بفرستید." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -193,7 +211,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -202,65 +220,80 @@ msgstr "" "چرا به [باز کردن یک حساب](%%action.register%%) اقدام نمی‌کنید و اولین نفری " "باشید که چیزی می‌فرستد!" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "شما و دوستان" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "به روز رسانی از %1$s و دوستان در %2$s" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "رابط مورد نظر پیدا نشد." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "برای استفاده از این روش باید اطلاعات را به صورت پست بفرستید" #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -268,16 +301,19 @@ msgstr "" "شما باید یک پارامتر را به نام device و مقدار sms، im یا none مشخص کنید." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -292,8 +328,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -308,10 +344,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -319,8 +357,9 @@ msgid "Unable to save your design settings." msgstr "نمی‌توان تنظیمات طرح‌تان را ذخیره کرد." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "نمی‌توان طرح‌تان به‌هنگام‌سازی کرد." @@ -339,31 +378,31 @@ msgstr "مسدود کردن کاربر شکست خورد." msgid "Unblock user failed." msgstr "باز کردن کاربر ناموفق بود." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "پیام‌های مستقیم از %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "تمام پیام‌های مستقیم فرستاده‌شده از %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "پیام‌های مستقیم به %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "تمام پیام‌های مستقیم فرستاده‌شده به %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "هیچ پیام متنی وجود ندارد!" @@ -396,7 +435,9 @@ msgid "" msgstr "یک پیام را به خودتان نفرستید؛ در عوض آن را آهسته برای خود بگویید." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "هیچ وضعیتی با آن شناسه پیدا نشد." @@ -412,46 +453,56 @@ msgstr "این پیغام را پیش‌تر به برگزیده‌های خود msgid "Could not create favorite." msgstr "نمی‌توان پیام را برگزید." -#: actions/apifavoritedestroy.php:124 +#. 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 "این پیام یک پیام برگزیده نیست." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "نمی‌توان پیام برگزیده را حذف کرد." -#: actions/apifriendshipscreate.php:110 +#. 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 "نمی‌توان کاربر را دنبال نکرد: کاربر یافت نشد." -#: actions/apifriendshipscreate.php:119 +#. 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 "نمی‌توان کاربر را دنبال کرد: %s هم‌اکنون در لیست شما است." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "نمی‌توان کاربر را دنبال نکرد: کاربر یافت نشد." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "نمی‌توانید خودتان را دنبال کنید." -#: actions/apifriendshipsexists.php:91 +#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists. +#: actions/apifriendshipsexists.php:88 #, fuzzy msgid "Two valid IDs or screen_names must be supplied." msgstr "باید ۲ شناسه‌ی کاربر یا نام ظاهری وارد کنید." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "نمی‌توان کاربر منبع را تعیین کرد." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "نمی‌توان کاربر هدف را پیدا کرد." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -459,7 +510,7 @@ msgstr "لقب باید شامل حروف کوچک و اعداد و بدون ف #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -467,7 +518,7 @@ msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -476,7 +527,7 @@ msgstr "لقب نا معتبر." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -485,134 +536,165 @@ msgstr "صفحهٔ خانگی یک نشانی معتبر نیست." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "نام کامل خیلی طولانی است (حداکثر ۲۵۵ نویسه)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "توصیف خیلی طولانی است (حداکثر %d نویسه)" +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "توصیف خیلی طولانی است (حداکثر %d نویسه)" +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "نام مکان خیلی طولانی است (حداکثر ۲۵۵ نویسه)" -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "نام‌های مستعار بسیار زیاد هستند! حداکثر %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "نام‌های مستعار بسیار زیاد هستند! حداکثر %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "نام مستعار نامعتبر است: «%s»." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "نام‌مستعار «%s» ازپیش گرفته‌شده‌است. یکی دیگر را امتحان کنید." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "نام و نام مستعار شما نمی تواند یکی باشد ." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: 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: 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 "دسترسی شما به گروه توسط مدیر آن محدود شده است." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "نمی‌توان کاربر %1$s را عضو گروه %2$s کرد." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "شما یک عضو این گروه نیستید." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "خارج شدن %s از گروه %s نا موفق بود" -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "گروه‌های %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 msgid "%1$s groups %2$s is a member of." msgstr "هست عضو %s گروه" -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s گروه" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "گروه‌ها در %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "بارگذاری شکست خورد." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "رمز ورود مشخص شده نامعتبر است." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "هیچ پارامتر oauth_token آماده نشده است." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "رمز نامعتبر است." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy 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:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -637,7 +719,7 @@ msgid "Invalid nickname / password!" msgstr "نام کاربری یا گذرواژه نامعتبر است!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "هنگام افزودن کاربر برنامهٔ OAuth در پایگاه داده خطایی رخ داد." @@ -648,7 +730,7 @@ msgstr "هنگام افزودن کاربر برنامهٔ OAuth در پایگا #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -658,19 +740,33 @@ 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:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "یک برنامه می‌خواهد که به حساب شما وصل شود" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: 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, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"برنامهٔ %1$s نوشته شده توسط %2$s امکان " +"%3$s داده‌های حساب %4$s شما را می‌خواهد. شما باید تنها اجازهٔ " +"دسترسی به حساب %4$s خودتان را به برنامه‌های دیگری که به آن اعتماد دارید، " +"بدهید." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -683,7 +779,7 @@ msgstr "" "بدهید." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -691,7 +787,7 @@ msgstr "حساب کاربری" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -701,7 +797,7 @@ msgstr "نام کاربری" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "گذرواژه" @@ -712,7 +808,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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -720,164 +816,225 @@ msgid "Cancel" msgstr "انصراف" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "اجازه دادن" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "به دسترسی به اطلاعات حسابتان اجازه بدهید یا از آن جلوگیری کنید." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "تایید پیام‌رسان فوری لغو شد." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, fuzzy, php-format msgid "The request token %s has been revoked." msgstr "نشانهٔ درخواست %s پذیرفته نشد و لغو شد." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "شما شناسایی نشده اید." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "این روش نیازمند POST یا DELETE است." -#: actions/apistatusesdestroy.php:135 +#. 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 "شما توانایی حذف وضعیت کاربر دیگری را ندارید." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 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:541 msgid "Already repeated that notice." msgstr "قبلا آن پیام تکرار شده است." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "وضعیت حذف شد." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "هیچ وضعیتی با آن شناسه یافت نشد." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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] "این خیلی طولانی است. بیشینهٔ طول پیام %d نویسه است." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "رابط مورد نظر پیدا نشد." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, 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] "بیشینهٔ طول پیام %d نویسه که شامل نشانی اینترنتی پیوست هم هست." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "قالب پشتیبانی نشده." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / برگزیده‌ها از %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "به‌روزرسانی‌های %1$s که توسط %2$s برگزیده شده اند / %2$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%$1s / به روز رسانی های شامل %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 "%1$s به روز رسانی هایی که در پاسخ به $2$s / %3$s" -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s خط‌زمانی عمومی" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s به روز رسانی های عموم" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "روش پیاده نشده است." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "تکرار شده به %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "تکرار %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "پیام‌هایی که با %s نشانه گزاری شده اند." -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "پیام‌های نشانه گزاری شده با %1$s در %2$s" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "روش API در دست ساخت." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "یافت نشد." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +#, fuzzy +msgid "User not found." +msgstr "رابط مورد نظر پیدا نشد." #: actions/attachment.php:73 msgid "No such attachment." @@ -1523,15 +1680,6 @@ msgstr "این نام در حال حاضر مورد استفاده است. یک msgid "Description is required." msgstr "توصیف مورد نیاز است." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "توصیف خیلی طولانی است (حداکثر %d نویسه)" - #. 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." @@ -1592,7 +1740,17 @@ msgstr "برای ویرایش گروه باید یک مدیر باشید." msgid "Use this form to edit the group." msgstr "از این روش برای ویرایش گروه استفاده کنید." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "توصیف خیلی طولانی است (حداکثر %d نویسه)" + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "نام‌های مستعار بسیار زیاد هستند! حداکثر %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "نام‌مستعار غیر مجاز: «%s»" @@ -2816,11 +2974,6 @@ msgstr "گروه جدید" msgid "Use this form to create a new group." msgstr "از این فرم برای ساختن یک گروه جدید استفاده کنید" -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "توصیف خیلی طولانی است (حداکثر %d نویسه)" - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "پیام جدید" @@ -8096,60 +8249,60 @@ msgid "Moderator" msgstr "مدیر" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "چند ثانیه پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "حدود یک دقیقه پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "حدود یک ساعت پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "حدود یک روز پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "حدود یک ماه پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "حدود یک سال پیش" @@ -8195,18 +8348,3 @@ msgstr "هیچ شناسهٔ کاربری مشخص نشده است." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "نام کامل خیلی طولانی است (حداکثر ۲۵۵ نویسه)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "نام مکان خیلی طولانی است (حداکثر ۲۵۵ نویسه)" - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "این بسیار طولانی است. بیشینهٔ اندازهٔ پیام %d نویسه است." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "شرح‌حال خیلی طولانی است (بیشینه %d نویسه)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "خودتان و علاقه‌مندی‌هایتان را در %d نویسه توصیف کنید" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 0d9ad68409..adf3205e7e 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -14,76 +14,77 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:10+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:08:58+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\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: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 #, fuzzy msgid "Access" msgstr "Hyväksy" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 #, fuzzy msgid "Site access settings" msgstr "Profiilikuva-asetukset" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 #, fuzzy msgid "Registration" msgstr "Rekisteröidy" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 #, fuzzy msgctxt "LABEL" msgid "Private" msgstr "Yksityisyys" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "" #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 #, fuzzy msgid "Invite only" msgstr "Kutsu" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "" #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Suljettu" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 #, fuzzy msgid "Save access settings" msgstr "Profiilikuva-asetukset" +#. 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 to store form data in the Paths admin panel. @@ -91,7 +92,7 @@ msgstr "Profiilikuva-asetukset" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -99,29 +100,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Tallenna" +#. 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 msgid "No such page." msgstr "Sivua ei ole." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -134,41 +151,42 @@ msgid "No such user." msgstr "Käyttäjää ei ole." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, fuzzy, php-format msgid "%1$s and friends, page %2$d" msgstr "%s ja kaverit" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s ja kaverit" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Käyttäjän %s kavereiden syöte (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Käyttäjän %s kavereiden syöte (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Käyttäjän %s kavereiden syöte (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -178,7 +196,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -187,9 +205,9 @@ msgstr "" "Kokeile useamman käyttäjän tilaamista [liittymällä ryhmään](%%action.groups%" "%) tai kirjoita päivitys." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, fuzzy, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -200,88 +218,106 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to them." msgstr "" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Sinä ja kaverisi" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "API-metodia ei löytynyt." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Tämä metodi edellyttää POST-pyynnön." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Käyttäjän päivitys epäonnistui." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -296,8 +332,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -312,10 +348,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -323,8 +361,9 @@ msgid "Unable to save your design settings." msgstr "Ulkoasun tallennus epäonnistui." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. 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 "Ei voitu päivittää käyttäjää." @@ -344,31 +383,31 @@ msgstr "Käyttäjän esto epäonnistui." msgid "Unblock user failed." msgstr "Käyttäjän eston poisto epäonnistui." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Suorat viestit käyttäjälle %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Kaikki suorat viestit käytäjältä %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Suorat viestit käyttäjälle %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Kaikki suorat viestit käyttäjälle %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Viestissä ei ole tekstiä!" @@ -404,7 +443,9 @@ msgid "" msgstr "Älä lähetä viestiä itsellesi, vaan kuiskaa se vain hiljaa itsellesi." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Käyttäjätunnukselle ei löytynyt statusviestiä." @@ -421,47 +462,57 @@ msgstr "Tämä päivitys on jo suosikki!" msgid "Could not create favorite." msgstr "Ei voitu lisätä suosikiksi." -#: actions/apifavoritedestroy.php:124 +#. TRANS: Client error displayed when trying to remove a favourite that was not a favourite. +#: actions/apifavoritedestroy.php:122 #, fuzzy msgid "That status is not a favorite." msgstr "Tämä päivitys ei ole suosikki!" -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Ei voitu poistaa suosikkia." -#: actions/apifriendshipscreate.php:110 +#. 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 "Ei voitu lopettaa tilausta: Käyttäjää ei löytynyt." -#: actions/apifriendshipscreate.php:119 +#. 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 "Ei voitu tilata käyttäjää: %s on jo listallasi" -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Ei voitu lopettaa tilausta: Käyttäjää ei löytynyt." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Sinä et voi poistaa käyttäjiä." -#: actions/apifriendshipsexists.php:91 +#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists. +#: actions/apifriendshipsexists.php:88 #, fuzzy msgid "Two valid IDs or screen_names must be supplied." msgstr "Kaksi käyttäjätunnusta tai nimeä täytyy antaa." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Ei voitu päivittää käyttäjää." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Ei voitu päivittää käyttäjää." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -471,7 +522,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -479,7 +530,7 @@ msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -488,7 +539,7 @@ msgstr "Tuo ei ole kelvollinen tunnus." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -497,134 +548,167 @@ msgstr "Kotisivun verkko-osoite ei ole toimiva." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Koko nimi on liian pitkä (max 255 merkkiä)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "kuvaus on liian pitkä (max %d merkkiä)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, 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ä)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Liikaa aliaksia. Maksimimäärä on %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Liikaa aliaksia. Maksimimäärä on %d." +msgstr[1] "Liikaa aliaksia. Maksimimäärä on %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, fuzzy, php-format msgid "Invalid alias: \"%s\"." msgstr "Virheellinen alias: \"%s\"" -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" on jo käytössä. Yritä toista aliasta." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Alias ei voi olla sama kuin ryhmätunnus." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Ei löytynyt." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Sinä kuulut jo tähän ryhmään." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "Sinut on estetty osallistumasta tähän ryhmään ylläpitäjän toimesta." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Käyttäjä %s ei voinut liittyä ryhmään %s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Sinä et kuulu tähän ryhmään." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Käyttäjä %s ei voinut liittyä ryhmään %s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Käyttäjän %s ryhmät" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 msgid "%1$s groups %2$s is a member of." msgstr "Ryhmät, joiden jäsen %s on" -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Käyttäjän %s ryhmät" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, fuzzy, php-format msgid "groups on %s" msgstr "Ryhmän toiminnot" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Komento epäonnistui" #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "Päivityksen sisältö ei kelpaa" #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: 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:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Koko ei kelpaa." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "Sinulla ei ole valtuutusta tähän." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -652,7 +736,7 @@ msgid "Invalid nickname / password!" msgstr "Käyttäjätunnus tai salasana ei kelpaa." #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" @@ -663,7 +747,7 @@ msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -673,19 +757,29 @@ msgid "Unexpected form submission." msgstr "Odottamaton lomakkeen lähetys." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: 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, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -694,7 +788,7 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -702,7 +796,7 @@ msgstr "Käyttäjätili" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -712,7 +806,7 @@ msgstr "Tunnus" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Salasana" @@ -723,7 +817,7 @@ msgstr "Salasana" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 #, fuzzy @@ -732,86 +826,108 @@ msgid "Cancel" msgstr "Peruuta" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Kaikki" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: 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:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "Varmistuskoodia ei ole annettu." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Sinulla ei ole valtuutusta tähän." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Sinulla ei ole valtuutusta tähän." + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Tämä metodi edellyttää joko POST tai DELETE sanoman." -#: actions/apistatusesdestroy.php:135 +#. 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 "Et voi poistaa toisen käyttäjän päivitystä." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Päivitystä ei ole." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 #, fuzzy msgid "Cannot repeat your own notice." msgstr "Ilmoituksia ei voi pistää päälle." +#. 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:541 msgid "Already repeated that notice." msgstr "Tätä päivitystä ei voi poistaa." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Päivitys poistettu." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -819,80 +935,118 @@ msgstr[0] "Päivitys on liian pitkä. Maksimipituus on %d merkkiä." msgstr[1] "Päivitys on liian pitkä. Maksimipituus on %d merkkiä." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "API-metodia ei löytynyt." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, 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." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Formaattia ei ole tuettu." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "Käyttäjän %1$s päivitys %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "Käyttäjän %1$s suosikit palvelussa %2$s!" -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Ei voitu päivittää ryhmää." + +#. 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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "Käyttäjän %1$s päivitys %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 "" "%1$s -päivitykset, jotka on vastauksia käyttäjän %2$s / %3$s päivityksiin." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s julkinen aikajana" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:199 actions/publicrss.php:105 #, fuzzy, php-format msgid "%s updates from everyone!" msgstr "%s päivitykset kaikilta!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Komentoa ei ole vielä toteutettu." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, fuzzy, php-format msgid "Repeated to %s" msgstr "Vastaukset käyttäjälle %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 msgid "Repeats of %s" msgstr "Vastaukset käyttäjälle %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Päivitykset joilla on tagi %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Käyttäjän %1$s suosikit palvelussa %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "API-metodi on työn alla!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Ei löytynyt." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "API-metodia ei löytynyt." #: actions/attachment.php:73 msgid "No such attachment." @@ -1545,16 +1699,6 @@ msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." msgid "Description is required." msgstr "Kuvaus" -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, 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ä)." - #. 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." @@ -1616,7 +1760,17 @@ msgstr "" msgid "Use this form to edit the group." msgstr "Käytä tätä lomaketta muokataksesi ryhmää." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "kuvaus on liian pitkä (max %d merkkiä)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Liikaa aliaksia. Maksimimäärä on %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Virheellinen alias: \"%s\"" @@ -2859,11 +3013,6 @@ msgstr "Uusi ryhmä" msgid "Use this form to create a new group." msgstr "Käytä tätä lomaketta luodaksesi ryhmän." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "kuvaus on liian pitkä (max %d merkkiä)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Uusi viesti" @@ -8106,17 +8255,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "muutama sekunti sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "noin minuutti sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8124,12 +8273,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "noin tunti sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8137,12 +8286,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "noin päivä sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8150,12 +8299,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "noin kuukausi sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8163,7 +8312,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "noin vuosi sitten" @@ -8208,18 +8357,3 @@ msgstr "Ryhmää ei ole määritelty." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Koko nimi on liian pitkä (max 255 merkkiä)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on %d merkkiä." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "kuvaus on liian pitkä (max %d merkkiä)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 8c1b888b7b..d5d956107e 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -20,70 +20,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:11+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:08:59+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Accès" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Paramètres d’accès au site" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Inscription" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Interdire aux utilisateurs anonymes (non connectés) de voir le site ?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Privé" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Autoriser l’inscription sur invitation seulement." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Sur invitation uniquement" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Désactiver les nouvelles inscriptions." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Fermé" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 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 label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text to store form data in the Paths admin panel. @@ -91,7 +92,7 @@ msgstr "Sauvegarder les paramètres d’accès" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -99,29 +100,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Enregistrer" +#. 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 msgid "No such page." msgstr "Page non trouvée." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -134,41 +151,42 @@ msgid "No such user." msgstr "Utilisateur non trouvé." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s et ses amis, page %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s et ses amis" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Flux pour les amis de %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Flux pour les amis de %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Flux pour les amis de %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -178,7 +196,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -187,9 +205,9 @@ msgstr "" "Essayez de vous abonner à plus d’utilisateurs, de vous [inscrire à un groupe]" "(%%action.groups%%) ou de poster quelque chose vous-même." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -201,7 +219,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -210,65 +228,80 @@ msgstr "" "Pourquoi ne pas [créer un compte](%%%%action.register%%%%) et faire ensuite " "un clin d’œil à %s ou poster un avis à son intention." -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Vous et vos amis" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Statuts de %1$s et ses amis dans %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "Méthode API non trouvée !" #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Ce processus requiert un POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -277,16 +310,19 @@ msgstr "" "sms, im, none." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Impossible de mettre à jour l’utilisateur." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -301,8 +337,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -321,10 +357,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -332,8 +370,9 @@ msgid "Unable to save your design settings." msgstr "Impossible de sauvegarder les parmètres de la conception." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Impossible de mettre à jour votre conception." @@ -352,31 +391,31 @@ msgstr "Le blocage de l’utilisateur a échoué." msgid "Unblock user failed." msgstr "Le déblocage de l’utilisateur a échoué." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Messages direct depuis %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Tous les messages directs envoyés par %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Messages directs envoyés à %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Tous les messages directs envoyés à %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Message sans texte !" @@ -413,7 +452,9 @@ msgstr "" "tête..." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Aucun statut trouvé avec cet identifiant. " @@ -429,45 +470,55 @@ msgstr "Cet avis est déjà un favori." msgid "Could not create favorite." msgstr "Impossible de créer le favori." -#: actions/apifavoritedestroy.php:124 +#. 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 "Cet avis n’est pas un favori." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Impossible de supprimer le favori." -#: actions/apifriendshipscreate.php:110 +#. 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 "Impossible de suivre l’utilisateur : profil non trouvé." -#: actions/apifriendshipscreate.php:119 +#. 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 "Impossible de suivre l’utilisateur : %s est déjà dans votre liste." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Impossible de ne plus suivre l’utilisateur : utilisateur non trouvé." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Vous ne pouvez pas ne plus vous suivre vous-même." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "Vous devez fournir deux identifiants ou pseudonymes." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Impossible de déterminer l’utilisateur source." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Impossible de trouver l’utilisateur cible." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -477,7 +528,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -485,7 +536,7 @@ msgstr "Pseudo déjà utilisé. Essayez-en un autre." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -494,7 +545,7 @@ msgstr "Pseudo invalide." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -503,132 +554,162 @@ msgstr "L’adresse du site personnel n’est pas un URL valide. " #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 -#, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Le nom complet est trop long (limité à 255 caractères maximum)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 #, php-format -msgid "Description is too long (max %d chars)." -msgstr "La description est trop longue (limitée à %d caractères maximum)." +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "La description est trop longue (limitée à %d caractère maximum)." +msgstr[1] "La description est trop longue (limitée à %d caractères maximum)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 -#, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "L’emplacement est trop long (limité à 255 caractères maximum)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Trop d’alias ! Maximum %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Trop d’alias ! Maximum %d." +msgstr[1] "Trop d’alias ! Maximum %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Alias invalide : « %s »." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias « %s » déjà utilisé. Essayez-en un autre." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "L’alias ne peut pas être le même que le pseudo." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Groupe non trouvé." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Vous êtes déjà membre de ce groupe." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "Vous avez été bloqué de ce groupe par l’administrateur." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Impossible d’inscrire l’utilisateur %1$s au groupe %2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Vous n’êtes pas membre de ce groupe." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Impossible de retirer l’utilisateur %1$s du groupe %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Groupes de %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "Groupes de %1$s dont %2$s est membre." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Groupes de %s" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "groupes sur %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Échec du téléversement." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 msgid "Invalid request token or verifier." msgstr "Jeton de requête ou de vérification invalide." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "Paramètre oauth_token non fourni." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 msgid "Invalid request token." msgstr "Jeton de requête incorrect." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 -#, fuzzy +#: actions/apioauthauthorize.php:121 msgid "Request token already authorized." -msgstr "Vous n’êtes pas autorisé." +msgstr "Le jeton de requête a déjà été autorisé." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -655,11 +736,11 @@ msgid "Invalid nickname / password!" msgstr "Pseudo ou mot de passe incorrect !" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 -#, fuzzy +#: actions/apioauthauthorize.php:217 msgid "Database error inserting oauth_token_association." msgstr "" -"Erreur de base de donnée en insérant l’utilisateur de l’application OAuth" +"Erreur de base de donnée lors de l’insertion du jeton d’association de " +"l’utilisateur de l’application OAuth" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Client error displayed submitting invalid form data for edit application. @@ -667,7 +748,7 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -677,20 +758,34 @@ msgid "Unexpected form submission." msgstr "Soumission de formulaire inattendue." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "" "Une application vous demande l’autorisation de se connecter à votre compte" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Autoriser ou refuser l’accès" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"L’application %1$s de %2$s voudrait " +"pouvoir %3$s les données de votre compte %4$s. Vous ne " +"devriez donner l’accès à votre compte %4$s qu’aux tiers à qui vous faites " +"confiance." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -703,14 +798,14 @@ msgstr "" "confiance." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 msgctxt "LEGEND" msgid "Account" msgstr "Compte" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -720,7 +815,7 @@ msgstr "Pseudo" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Mot de passe" @@ -731,7 +826,7 @@ msgstr "Mot de passe" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -739,38 +834,54 @@ msgid "Cancel" msgstr "Annuler" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 msgctxt "BUTTON" msgid "Allow" msgstr "Autoriser" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 msgid "Authorize access to your account information." msgstr "Autoriser l’accès aux informations de votre compte." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 msgid "Authorization canceled." msgstr "Autorisation annulée." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "Le jeton de requête %s a été révoqué." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Vous avez avec succès autorisé l’application %s." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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 +#, fuzzy +msgid "" +"Please return to the application and enter the following security code to " +"complete the process." +msgstr "" +"Veuillez retourner à l’application %s et entrez le code de sécurité ci-" +"dessous pour compléter le processus." + +#. 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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Vous avez avec succès autorisé l’application %s." + +#. 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 " @@ -779,45 +890,54 @@ msgstr "" "Veuillez retourner à l’application %s et entrez le code de sécurité ci-" "dessous pour compléter le processus." -#: actions/apistatusesdestroy.php:112 +#. 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 "Ce processus requiert un POST ou un DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Vous ne pouvez pas supprimer le statut d’un autre utilisateur." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Avis non trouvé." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Vous ne pouvez pas reprendre votre propre avis." +#. 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:541 msgid "Already repeated that notice." msgstr "Vous avez déjà repris cet avis." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Statut supprimé." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Aucun statut trouvé avec cet identifiant." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "Le client doit fournir un paramètre « statut » avec une valeur." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, 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." @@ -827,11 +947,13 @@ msgstr[1] "" "C’est trop long ! La taille maximale de l’avis est limitée à %d caractères." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 msgid "Parent notice not found." msgstr "L’avis parent correspondant à cette réponse n’a pas été trouvé." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -842,67 +964,103 @@ msgstr[1] "" "La taille maximale de l’avis est limitée à %d caractères, en incluant " "l’adresse URL de la pièce jointe." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Format non supporté." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Favoris de %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s statuts favoris de %2$s / %2$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Impossible de supprimer le groupe « %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. +#: actions/apitimelinementions.php:115 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Mises à jour mentionnant %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 "%1$s statuts en réponses aux statuts de %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Activité publique %s" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s statuts de tout le monde !" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Méthode non implémentée." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Repris pour %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Reprises de %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Avis marqués avec %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Mises à jour marquées avec %1$s dans %2$s !" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "Méthode API en construction." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Non trouvé." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "Page non trouvée." #: actions/attachment.php:73 msgid "No such attachment." @@ -1539,16 +1697,6 @@ msgstr "Ce nom est déjà utilisé. Essayez-en un autre." msgid "Description is required." msgstr "La description est requise." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "La description est trop longue (limitée à %d caractère maximum)." -msgstr[1] "La description est trop longue (limitée à %d caractères maximum)." - #. 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." @@ -1606,7 +1754,17 @@ msgstr "Vous devez être administrateur pour modifier le groupe." msgid "Use this form to edit the group." msgstr "Remplissez ce formulaire pour modifier les options du groupe." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "La description est trop longue (limitée à %d caractères maximum)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Trop d’alias ! Maximum %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Alias invalide : « %s »" @@ -2822,7 +2980,6 @@ msgstr "Aucun statut actuel." #. TRANS: This is the title of the form for adding a new application. #: actions/newapplication.php:52 -#, fuzzy msgid "New application" msgstr "Nouvelle application" @@ -2836,16 +2993,14 @@ msgid "Use this form to register a new application." msgstr "Utilisez ce formulaire pour inscrire une nouvelle application." #: actions/newapplication.php:169 -#, fuzzy msgid "Name is too long (maximum 255 chars)." -msgstr "Le nom est trop long (maximum de 255 caractères)." +msgstr "Le nom est trop long (limité à 255 caractères maximum)." #: actions/newapplication.php:184 msgid "Source URL is required." msgstr "L’URL source est requise." #: actions/newapplication.php:199 -#, fuzzy msgid "Organization is too long (maximum 255 chars)." msgstr "L’organisation est trop longue (limitée à 255 caractères maximum)." @@ -2861,11 +3016,6 @@ msgstr "Nouveau groupe" msgid "Use this form to create a new group." msgstr "Remplissez les champs ci-dessous pour créer un nouveau groupe :" -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "la description est trop longue (%d caractères maximum)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Nouveau message" @@ -3660,7 +3810,7 @@ msgstr "" #. 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:230 -#, fuzzy, php-format +#, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." msgstr[0] "La biographie est trop longue (limitée à %d caractère maximum)." @@ -3673,7 +3823,6 @@ msgstr "Aucun fuseau horaire n’a été choisi." #. TRANS: Validation error in form for profile settings. #: actions/profilesettings.php:281 -#, fuzzy msgid "Language is too long (maximum 50 characters)." msgstr "La langue est trop longue (limitée à 50 caractères maximum)." @@ -5844,7 +5993,7 @@ msgstr "Aucun utilisateur unique défini pour le mode mono-utilisateur." #. TRANS: Server exception. #: classes/User.php:906 msgid "Single-user mode code called when not enabled." -msgstr "" +msgstr "Code en mode mono-utilisateur appelé quand ce n’est pas autorisé." #. TRANS: Server exception thrown when creating a group failed. #: classes/User_group.php:495 @@ -6342,12 +6491,13 @@ msgstr "Impossible de créer l’application OAuth anonyme." msgid "" "Could not find a profile and application associated with the request token." msgstr "" +"Impossible de trouver le profil et l’application associés au jeton de " +"requête." #. TRANS: Exception thrown when no access token can be issued. #: lib/apioauthstore.php:186 -#, fuzzy msgid "Could not issue access token." -msgstr "Impossible d’insérer le message." +msgstr "Impossible d’émettre le jeton d’accès." #. TRANS: Server error displayed when a database error occurs. #: lib/apioauthstore.php:243 @@ -7958,9 +8108,8 @@ msgstr "Révoquer le rôle « %s » de cet utilisateur" #. TRANS: Client error on action trying to visit a non-existing page. #: lib/router.php:847 -#, fuzzy msgid "Page not found." -msgstr "Méthode API non trouvée !" +msgstr "Page non trouvée." #: lib/sandboxform.php:67 msgid "Sandbox" @@ -8197,17 +8346,17 @@ msgid "Moderator" msgstr "Modérateur" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "il y a quelques secondes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "il y a 1 minute" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8215,12 +8364,12 @@ msgstr[0] "une minute" msgstr[1] "%d minutes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "il y a 1 heure" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8228,12 +8377,12 @@ msgstr[0] "une heure" msgstr[1] "%d heures" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "il y a 1 jour" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8241,12 +8390,12 @@ msgstr[0] "un jour" msgstr[1] "%d jours" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "il y a 1 mois" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8254,7 +8403,7 @@ msgstr[0] "un" msgstr[1] "%d" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "il y a environ 1 an" @@ -8276,19 +8425,20 @@ msgstr "" #, php-format msgid "Unknown user. Go to %s to add your address to your account" msgstr "" +"Utilisateur inconnu. Aller à %s pour ajouter votre adresse à votre compte." #. 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:404 -#, fuzzy, php-format +#, 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] "" -"Message trop long ! La taille maximale est de %1$d caractères ; vous en avez " -"entré %2$d." +"Message trop long ! La taille maximale est de %1$d caractère ; vous en avez " +"envoyé %2$d." msgstr[1] "" "Message trop long ! La taille maximale est de %1$d caractères ; vous en avez " -"entré %2$d." +"envoyé %2$d." #: scripts/restoreuser.php:82 #, php-format @@ -8303,19 +8453,3 @@ msgstr "Aucun utilisateur spécifié ; utilisation de l’utilisateur de secours #, php-format msgid "%d entries in backup." msgstr "%d entrées dans la sauvegarde." - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Le nom complet est trop long (limité à 255 caractères maximum)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "L’emplacement est trop long (limité à 255 caractères maximum)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "" -#~ "C’est trop long ! La taille maximale du message est de %d caractères." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "La bio est trop longue (%d caractères maximum)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Décrivez vous et vos intérêts en %d caractères" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 4e30f554df..852fc62353 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -9,77 +9,78 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:12+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:00+0000\n" "Language-Team: Irish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=5; plural=(n == 1) ? 0 : ( (n == 2) ? 1 : ( (n < 7) ? " "2 : ( (n < 11) ? 3 : 4 ) ) );\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 #, fuzzy msgid "Access" msgstr "Aceptar" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Configuración de perfil" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 #, fuzzy msgid "Registration" msgstr "Rexistrar" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 #, fuzzy msgctxt "LABEL" msgid "Private" msgstr "Privacidade" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "" #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 #, fuzzy msgid "Invite only" msgstr "Invitar" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "" #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 #, fuzzy msgid "Closed" msgstr "Bloquear" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 #, fuzzy msgid "Save access settings" msgstr "Configuracións de Twitter" +#. 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 to store form data in the Paths admin panel. @@ -87,7 +88,7 @@ msgstr "Configuracións de Twitter" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -96,6 +97,7 @@ msgctxt "BUTTON" msgid "Save" msgstr "Gardar" +#. 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 @@ -103,23 +105,38 @@ msgstr "Gardar" msgid "No such page." msgstr "Non existe a etiqueta." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -132,41 +149,42 @@ msgid "No such user." msgstr "Ningún usuario." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, fuzzy, php-format msgid "%1$s and friends, page %2$d" msgstr "%s e amigos" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s e amigos" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Fonte para os amigos de %s" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Fonte para os amigos de %s" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Fonte para os amigos de %s" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -174,16 +192,16 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -192,91 +210,109 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to them." msgstr "" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 #, fuzzy msgid "You and friends" msgstr "%s e amigos" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizacións dende %1$s e amigos en %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 #, fuzzy msgid "API method not found." msgstr "Método da API non atopado" #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Este método require un POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 #, fuzzy msgid "Could not update user." msgstr "Non se puido actualizar o usuario." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -292,8 +328,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -311,10 +347,12 @@ msgstr[4] "" #. 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -323,8 +361,9 @@ msgid "Unable to save your design settings." msgstr "Non se puideron gardar os teus axustes de Twitter!" #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. 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 "Non se puido actualizar o usuario." @@ -345,31 +384,31 @@ msgstr "Bloqueo de usuario fallido." msgid "Unblock user failed." msgstr "Desbloqueo de usuario fallido." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, fuzzy, php-format msgid "Direct messages from %s" msgstr "Mensaxes directas para %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Tódalas mensaxes directas enviadas dende %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Mensaxes directas para %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Tódalas mensaxes directas enviadas a %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Non hai mensaxes de texto!" @@ -409,7 +448,9 @@ msgstr "" "vante tomar por tolo." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Non se atopou un estado con ese ID." @@ -426,50 +467,60 @@ msgstr "Este chío xa é un favorito!" msgid "Could not create favorite." msgstr "Non se puido crear o favorito." -#: actions/apifavoritedestroy.php:124 +#. TRANS: Client error displayed when trying to remove a favourite that was not a favourite. +#: actions/apifavoritedestroy.php:122 #, fuzzy msgid "That status is not a favorite." msgstr "Este chío non é un favorito!" -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Non se puido eliminar o favorito." -#: actions/apifriendshipscreate.php:110 +#. 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 "Non podes seguir a este usuario: %s xa está na túa lista." -#: actions/apifriendshipscreate.php:119 +#. 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 "Non podes seguir a este usuario: %s xa está na túa lista." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Non podes seguir a este usuario: %s xa está na túa lista." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 #, fuzzy msgid "You cannot unfollow yourself." msgstr "Non se puido actualizar o usuario." -#: actions/apifriendshipsexists.php:91 +#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists. +#: actions/apifriendshipsexists.php:88 #, fuzzy msgid "Two valid IDs or screen_names must be supplied." msgstr "" "Dous identificadores de usuario ou nomes_en_pantalla deben ser " "proporcionados." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Non se puido actualizar o usuario." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Non se puido actualizar o usuario." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -477,7 +528,7 @@ msgstr "O alcume debe ter só letras minúsculas e números, e sen espazos." #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -485,7 +536,7 @@ msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -494,7 +545,7 @@ msgstr "Non é un alcume válido." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -503,134 +554,173 @@ msgstr "A páxina persoal semella que non é unha URL válida." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "O nome completo é demasiado longo (max 255 car)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "O teu Bio é demasiado longo (max %d car.)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "O teu Bio é demasiado longo (max %d car.)." +msgstr[1] "O teu Bio é demasiado longo (max %d car.)." +msgstr[2] "O teu Bio é demasiado longo (max %d car.)." +msgstr[3] "O teu Bio é demasiado longo (max %d car.)." +msgstr[4] "O teu Bio é demasiado longo (max %d car.)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "A localización é demasiado longa (max 255 car.)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 #, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, fuzzy, php-format msgid "Invalid alias: \"%s\"." msgstr "Etiqueta inválida: '%s'" -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Non atopado" +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Xa estas suscrito a estes usuarios:" +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "" +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Non podes seguir a este usuario: %s xa está na túa lista." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Non estás suscrito a ese perfil" +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Non podes seguir a este usuario: %s xa está na túa lista." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, fuzzy, php-format msgid "%s's groups" msgstr "Usuarios" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 msgid "%1$s groups %2$s is a member of." msgstr "%1s non é unha orixe fiable." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, fuzzy, php-format msgid "groups on %s" msgstr "Outras opcions" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Comando fallido" #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "Contido do chío inválido" #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: 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:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Tamaño inválido." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "Non estás suscrito a ese perfil" +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -656,7 +746,7 @@ msgid "Invalid nickname / password!" msgstr "Usuario ou contrasinal inválidos." #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "Erro ó inserir o hashtag na BD: %s" @@ -667,7 +757,7 @@ msgstr "Erro ó inserir o hashtag na BD: %s" #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -677,19 +767,29 @@ msgid "Unexpected form submission." msgstr "Envio de formulario non esperada." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: 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, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -698,7 +798,7 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -706,7 +806,7 @@ msgstr "Sobre" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -716,7 +816,7 @@ msgstr "Alcume" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasinal" @@ -727,7 +827,7 @@ msgstr "Contrasinal" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 #, fuzzy @@ -736,87 +836,109 @@ msgid "Cancel" msgstr "Cancelar" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Todos" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: 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:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "Sen código de confirmación." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Non estás suscrito a ese perfil" -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Non estás suscrito a ese perfil" + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Este método require un POST ou DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Non deberías eliminar o estado de outro usuario" -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Ningún chío." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 #, fuzzy msgid "Cannot repeat your own notice." msgstr "Non se pode activar a notificación." +#. 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:541 msgid "Already repeated that notice." msgstr "Non se pode eliminar este chíos." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 #, fuzzy msgid "Status deleted." msgstr "Avatar actualizado." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Non existe ningún estado con esa ID atopada." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -827,12 +949,14 @@ msgstr[3] "Podes actualizar a túa información do perfil persoal aquí" msgstr[4] "Podes actualizar a túa información do perfil persoal aquí" #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "Método da API non atopado" -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -842,68 +966,104 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 "Formato de ficheiro de imaxe non soportado." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "Estado de %1$s en %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "Hai %1$s chíos en resposta a chíos dende %2$s / %3$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Non se puido actualizar o usuario." + +#. 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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "Estado de %1$s en %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 "Hai %1$s chíos en resposta a chíos dende %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Liña de tempo pública de %s" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s chíos de calquera!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Comando non implementado." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, fuzzy, php-format msgid "Repeated to %s" msgstr "Replies to %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 msgid "Repeats of %s" msgstr "Replies to %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Chíos tagueados con %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "Método da API en contrución." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Non atopado" +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "Método da API non atopado" #: actions/attachment.php:73 msgid "No such attachment." @@ -1572,19 +1732,6 @@ msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." msgid "Description is required." msgstr "Subscrición rexeitada" -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "O teu Bio é demasiado longo (max %d car.)." -msgstr[1] "O teu Bio é demasiado longo (max %d car.)." -msgstr[2] "O teu Bio é demasiado longo (max %d car.)." -msgstr[3] "O teu Bio é demasiado longo (max %d car.)." -msgstr[4] "O teu Bio é demasiado longo (max %d car.)." - #. 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." @@ -1647,7 +1794,17 @@ msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" msgid "Use this form to edit the group." msgstr "" -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "O teu Bio é demasiado longo (max %d car.)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Etiqueta inválida: '%s'" @@ -2914,11 +3071,6 @@ msgstr "" msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "O teu Bio é demasiado longo (max 140 car.)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Nova mensaxe" @@ -8284,17 +8436,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "fai uns segundos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "fai un minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8305,12 +8457,12 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "fai unha hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8321,12 +8473,12 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "fai un día" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8337,12 +8489,12 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "fai un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8353,7 +8505,7 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "fai un ano" @@ -8406,20 +8558,3 @@ msgstr "Non se especificou ningún perfil." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "O nome completo é demasiado longo (max 255 car)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "A localización é demasiado longa (max 255 car.)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Podes actualizar a túa información do perfil persoal aquí" - -#, fuzzy -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "O teu Bio é demasiado longo (max %d car.)." - -#, fuzzy -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 2baa685fca..e321affb72 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -11,70 +11,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:13+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:02+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Acceso" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Configuración do acceso ao sitio" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Rexistro" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Prohibir que os usuarios anónimos (sen sesión iniciada) vexan o sitio?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Privado" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Que o rexistro só se poida facer previa invitación." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Só por invitación" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Desactivar os novos rexistros." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Pechado" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 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 label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text to store form data in the Paths admin panel. @@ -82,7 +83,7 @@ msgstr "Gardar a configuración de acceso" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -90,29 +91,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Gardar" +#. 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 msgid "No such page." msgstr "Esa páxina non existe." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -125,41 +142,42 @@ msgid "No such user." msgstr "Non existe tal usuario." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s e amigos, páxina %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s e amigos" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Fonte de novas dos amigos de %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Fonte de novas dos amigos de %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Fonte de novas dos amigos de %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -168,7 +186,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -177,9 +195,9 @@ msgstr "" "Probe a subscribirse a máis xente, [únase a un grupo](%%action.groups%%) ou " "publique algo." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -191,7 +209,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -200,65 +218,80 @@ msgstr "" "Por que non [rexistrar unha conta](%%%%action.register%%%%) e entón facerlle " "un aceno a %s ou publicar unha nota dirixida a el ou ela?" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Vostede e mailos seus amigos" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizacións de %1$s e amigos en %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "Non se atopou o método da 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Este método require un POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -267,16 +300,19 @@ msgstr "" "im, none." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Non se puido actualizar o usuario." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -291,8 +327,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -311,10 +347,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -322,8 +360,9 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Non se puido actualizar o seu deseño." @@ -342,31 +381,31 @@ msgstr "Non se puido bloquear o usuario." msgid "Unblock user failed." msgstr "Non se puido desbloquear o usuario." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Mensaxes directas de %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Todas as mensaxes directas enviadas por %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Mensaxes directas a %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Todas as mensaxes directas enviadas a %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "A mensaxe non ten texto!" @@ -403,7 +442,9 @@ msgid "" msgstr "Non se envíe unha mensaxe, limítese a pensar nela." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Non se atopou ningún estado con esa ID." @@ -419,45 +460,55 @@ msgstr "Este estado xa é dos favoritos." msgid "Could not create favorite." msgstr "Non se puido crear o favorito." -#: actions/apifavoritedestroy.php:124 +#. 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 "Ese estado non é un dos favoritos." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Non se puido eliminar o favorito." -#: actions/apifriendshipscreate.php:110 +#. 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 "Non se puido seguir o usuario: non se atopou." -#: actions/apifriendshipscreate.php:119 +#. 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 "Non se puido seguir o usuario: %s xa está na súa lista." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Non se puido deixar de seguir o usuario: non se atopou." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Non pode deixar de seguirse a si mesmo." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "Deben fornecerse dúas identificacións ou nomes de usuario." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Non se puido determinar o usuario de orixe." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Non se puido atopar o usuario de destino." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -467,7 +518,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -475,7 +526,7 @@ msgstr "Ese alcume xa está en uso. Probe con outro." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -484,7 +535,7 @@ msgstr "O formato do alcume non é correcto." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -493,134 +544,167 @@ msgstr "O URL da páxina persoal non é correcto." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "O nome completo é longo de máis (o máximo son 255 caracteres)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "A descrición é longa de máis (o máximo son %d caracteres)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "A descrición é longa de máis (o máximo son %d caracteres)." +msgstr[1] "A descrición é longa de máis (o máximo son %d caracteres)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "A localidade é longa de máis (o máximo son 255 caracteres)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Demasiados pseudónimos! O número máximo é %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Demasiados pseudónimos! O número máximo é %d." +msgstr[1] "Demasiados pseudónimos! O número máximo é %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Pseudónimo incorrecto: \"%s\"." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "O pseudónimo \"%s\" xa se está a usar. Proba con outro." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "O pseudónimo non pode coincidir co alcume." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Non se atopou o grupo." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Xa forma parte dese grupo." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "O administrador bloqueouno nese grupo." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "O usuario %1$s non se puido engadir ao grupo %2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Vostede non pertence a este grupo." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "O usuario %1$s non se puido eliminar do grupo %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Os grupos de %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "Grupos de %1$s aos que pertence %2$s." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "grupos %s" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "grupos en %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Houbo un erro durante a carga." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "O pase especificado é incorrecto." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "Non se forneceu o parámetro oauth_token." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Pase incorrecto." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "Non está autorizado." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -645,7 +729,7 @@ msgid "Invalid nickname / password!" msgstr "O alcume ou o contrasinal son incorrectos!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "" @@ -658,7 +742,7 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -668,19 +752,32 @@ msgid "Unexpected form submission." msgstr "Envío de formulario inesperado." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Unha aplicación quere conectarse á súa conta" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Permitir ou denegar o acceso" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"A aplicación %1$s de %2$s quere poder " +"%3$s os datos da súa conta %4$s. Só debería permitir o " +"acceso á súa conta %4$s a xente de confianza." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -692,7 +789,7 @@ msgstr "" "acceso á súa conta %4$s a xente de confianza." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -700,7 +797,7 @@ msgstr "Conta" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -710,7 +807,7 @@ msgstr "Alcume" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasinal" @@ -721,7 +818,7 @@ msgstr "Contrasinal" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -729,86 +826,108 @@ msgid "Cancel" msgstr "Cancelar" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Permitir" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "Permitir ou denegar o acceso á información da súa conta." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "Cancelouse a confirmación por mensaxería instantánea." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, fuzzy, php-format msgid "The request token %s has been revoked." msgstr "Denegouse e revogouse a ficha da solicitude %s." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Non está autorizado." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Non está autorizado." + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Este método require un POST ou un DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Non pode borrar o estado doutro usuario." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Non existe tal nota." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Non pode repetir a súa propia nota." +#. 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:541 msgid "Already repeated that notice." msgstr "Xa repetiu esa nota." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Borrouse o estado." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Non se atopou ningún estado con esa ID." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "O cliente debe proporcionar un parámetro de \"estado\" cun valor." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -816,12 +935,14 @@ msgstr[0] "Iso é longo de máis. A nota non pode exceder os %d caracteres." msgstr[1] "Iso é longo de máis. A nota non pode exceder os %d caracteres." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "Non se atopou o método da API." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -832,67 +953,104 @@ msgstr[1] "" "A lonxitude máxima das notas é de %d caracteres, incluído o URL do dato " "adxunto." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Formato non soportado." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Favoritos de %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s actualizacións marcadas como favoritas por %2$s / %2$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Non se puido actualizar o grupo." + +#. 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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Actualizacións que mencionan %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 "%1$s actualizacións que responden a actualizacións de %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Liña do tempo pública de %s" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s actualizacións de todos!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Aínda non se implantou o método." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Repetiu a %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Repeticións de %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Notas etiquetadas con %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizacións etiquetadas con %1$s en %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "Método API en desenvolvemento." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Non se atopou." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +#, fuzzy +msgid "User not found." +msgstr "Non se atopou o método da API." #: actions/attachment.php:73 msgid "No such attachment." @@ -1536,16 +1694,6 @@ msgstr "O nome xa está en uso. Probe con outro." msgid "Description is required." msgstr "Fai falla unha descrición." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "A descrición é longa de máis (o máximo son %d caracteres)." -msgstr[1] "A descrición é longa de máis (o máximo son %d caracteres)." - #. 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." @@ -1604,7 +1752,17 @@ msgstr "Ten que ser administrador para editar o grupo." msgid "Use this form to edit the group." msgstr "Utilice este formulario para editar o grupo." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "A descrición é longa de máis (o máximo son %d caracteres)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Demasiados pseudónimos! O número máximo é %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Pseudónimo inválido: \"%s\"" @@ -2851,11 +3009,6 @@ msgstr "Novo grupo" msgid "Use this form to create a new group." msgstr "Utilice o seguinte formulario para crear un novo grupo." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "a descrición é longa de máis (o límite é de %d caracteres)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Mensaxe nova" @@ -8187,17 +8340,17 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "hai uns segundos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "hai como un minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8205,12 +8358,12 @@ msgstr[0] "hai un minuto" msgstr[1] "hai %d minutos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "hai como unha hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8218,12 +8371,12 @@ msgstr[0] "hai unha hora" msgstr[1] "hai %d horas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "hai como un día" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8231,12 +8384,12 @@ msgstr[0] "hai un día" msgstr[1] "hai %d días" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "hai como un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8244,7 +8397,7 @@ msgstr[0] "hai un mes" msgstr[1] "hai %d meses" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "hai como un ano" @@ -8290,19 +8443,3 @@ msgstr "Non se especificou ningún usuario; emprégase o usuario de reserva." #, php-format msgid "%d entries in backup." msgstr "%d entradas na reserva." - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "O nome completo é longo de máis (o máximo son 255 caracteres)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "A localidade é longa de máis (o máximo son 255 caracteres)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "" -#~ "Iso é longo de máis. A lonxitude máxima das mensaxes é de %d caracteres." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "A biografía é longa de máis (o límite son %d caracteres)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Descríbase a vostede e mailos seus intereses en %d caracteres" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index ebac6da3a7..bbb11a4979 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -11,71 +11,72 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:14+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:03+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\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: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Přistup" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Nastajenja za sydłowy přistup" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Registrowanje" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Anonymnym wužiwarjam (njepřizjewjenym) wobhladowanje sydła zakazć?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Priwatny" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "" #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Jenož přeprosyć" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Nowe registrowanja znjemóžnić." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Začinjeny" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" msgstr "Přistupne nastajenja składować" +#. 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 to store form data in the Paths admin panel. @@ -83,7 +84,7 @@ msgstr "Přistupne nastajenja składować" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -91,29 +92,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Składować" +#. 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 msgid "No such page." msgstr "Strona njeeksistuje." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -126,41 +143,42 @@ msgid "No such user." msgstr "Wužiwar njeeksistuje" #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s a přećeljo, strona %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s a přećeljo" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Kanal za přećelow wužiwarja %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Kanal za přećelow wužiwarja %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Kanal za přećelow wužiwarja %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -168,16 +186,16 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -186,88 +204,106 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to them." msgstr "" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Ty a přećeljo" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualizacije wot %1$s a přećelow na %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "API-metoda njenamakana." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Tuta metoda wužaduje sej POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Wužiwar njeje so dał aktualizować." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -282,8 +318,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -300,10 +336,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -312,8 +350,9 @@ msgid "Unable to save your design settings." msgstr "Njeje móžno, sydłowu zdźělenku składować." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Design njeda so aktualizować." @@ -332,31 +371,31 @@ msgstr "Blokowanje wužiwarja je so njeporadźiło." msgid "Unblock user failed." msgstr "Wotblokowanje wužiwarja je so njeporadźiło." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Direktne powěsće z %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Wšě z %s pósłane direktne powěsće" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Direktne powěsće do %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Wšě do %s pósłane direktne powěsće" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Žadyn powěsćowy tekst!" @@ -393,7 +432,9 @@ msgid "" msgstr "" #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Status z tym ID njenamakany." @@ -409,46 +450,56 @@ msgstr "Tutón status je hižo faworit." msgid "Could not create favorite." msgstr "Faworit njeda so wutworić." -#: actions/apifavoritedestroy.php:124 +#. 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 "Tón status faworit njeje." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Faworit njeda so zhašeć." -#: actions/apifriendshipscreate.php:110 +#. 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 "Njebě móžno wužiwarja słědować: profil njenamakany." -#: actions/apifriendshipscreate.php:119 +#. 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 #, fuzzy, php-format msgid "Could not follow user: %s is already on your list." msgstr "Njebě móžno wužiwarja słědować: profil njenamakany." -#: actions/apifriendshipsdestroy.php:110 +#. 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 "Njebě móžno wužiwarja słědować: profil njenamakany." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Njemóžeš slědowanje swójskich aktiwitow blokować." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "Dyrbitej so dwaj płaćiwej wužiwarskej ID abo wužiwarskej mjenje podać." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Žórłowy wužiwar njeda so postajić." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Cilowy wužiwar njeda so namakać." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -457,7 +508,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -465,7 +516,7 @@ msgstr "Přimjeno so hižo wužiwa. Spytaj druhe." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -474,7 +525,7 @@ msgstr "Žane płaćiwe přimjeno." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -483,134 +534,171 @@ msgstr "Startowa strona njeje płaćiwy URL." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Dospołne mjeno je předołho (maks. 255 znamješkow)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Wopisanje je předołho (maks. %d znamješkow)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Wopisanje je předołho (maks. %d znamješkow)." +msgstr[1] "Wopisanje je předołho (maks. %d znamješkow)." +msgstr[2] "Wopisanje je předołho (maks. %d znamješkow)." +msgstr[3] "Wopisanje je předołho (maks. %d znamješkow)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Městno je předołho (maks. 255 znamješkow)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Přewjele aliasow! Maksimum: %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Přewjele aliasow! Maksimum: %d." +msgstr[1] "Přewjele aliasow! Maksimum: %d." +msgstr[2] "Přewjele aliasow! Maksimum: %d." +msgstr[3] "Přewjele aliasow! Maksimum: %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Njepłaćiwy alias: \"%s\"." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" so hižo wužiwa. Spytaj druhi." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Alias njemóže samsny kaž přimjeno być." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Skupina njenamakana." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Sy hižo čłon teje skupiny." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "Administratora tuteje skupiny je će zablokował." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Njebě móžno wužiwarja %1$s skupinje %2%s přidać." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Njejsy čłon tuteje skupiny." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Njebě móžno wužiwarja %1$s ze skupiny %2$s wotstronić." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Skupiny wužiwarja %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "Skupiny na %1$s, w kotrychž wužiwar %2$s je čłon." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s skupinow" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "skupiny na %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Nahraće je so njeporadźiło." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "Njepłaćiwe přizjewjenske znamješko podate." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: 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:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Njepłaćiwy token." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "Njejsy awtorizowany." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -635,7 +723,7 @@ msgid "Invalid nickname / password!" msgstr "Njepłaćiwe přimjeno abo hesło!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "Zmylk datoweje banki při zasunjenju wužiwarja OAuth-aplikacije." @@ -646,7 +734,7 @@ msgstr "Zmylk datoweje banki při zasunjenju wužiwarja OAuth-aplikacije." #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -656,19 +744,29 @@ msgid "Unexpected form submission." msgstr "Njewočakowane wotpósłanje formulara." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Aplikacija chce so z twojom kontom zwjazać" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Přistup dowolić abo wotpokazać" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -677,7 +775,7 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -685,7 +783,7 @@ msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -695,7 +793,7 @@ msgstr "Přimjeno" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Hesło" @@ -706,7 +804,7 @@ msgstr "Hesło" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -714,86 +812,108 @@ msgid "Cancel" msgstr "Přetorhnyć" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Dowolić" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "Přistup ke kontowym informacijam dowolić abo wotpokazać." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "IM-wobkrućenje přetorhnjene." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Njejsy awtorizowany." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Njejsy awtorizowany." + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Tuta metoda wužaduje sej POST abo DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Njemóžeš status druheho wužiwarja zničić." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Zdźělenka njeeksistuje." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Njemóžno twoju zdźělenku wospjetować." +#. 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:541 msgid "Already repeated that notice." msgstr "Tuta zdźělenka bu hižo wospjetowana." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Status zničeny." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Žadyn status z tym ID namakany." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -803,12 +923,14 @@ msgstr[2] "To je předołho. Maksimalna wulkosć zdźělenki je %d znamješkow." msgstr[3] "To je předołho. Maksimalna wulkosć zdźělenki je %d znamješkow." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "API-metoda njenamakana." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -817,68 +939,105 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Njepodpěrany format." -#: actions/apitimelinefavorites.php:110 +#. 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 msgid "%1$s / Favorites from %2$s" msgstr "%1$s je do %2$s zastupił" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$s / %2$s." -msgstr "" +#. 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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." +msgstr "Aktualizacije wot %1$s na %2$s!" -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Skupina njeje so dała aktualizować." + +#. 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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "" +#. 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 "" -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s aktualizacijow wote wšěch!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Njeimplementowana metoda." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, fuzzy, php-format msgid "Repeated to %s" msgstr "Wospjetowany" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualizacije wot %1$s na %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 #, fuzzy msgid "API method under construction." msgstr "API-metoda njenamakana." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Njenamakany." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +#, fuzzy +msgid "User not found." +msgstr "API-metoda njenamakana." #: actions/attachment.php:73 msgid "No such attachment." @@ -1510,18 +1669,6 @@ msgstr "Mjeno so hižo wužiwa. Spytaj druhe." msgid "Description is required." msgstr "Wopisanje je trěbne." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Wopisanje je předołho (maks. %d znamješkow)." -msgstr[1] "Wopisanje je předołho (maks. %d znamješkow)." -msgstr[2] "Wopisanje je předołho (maks. %d znamješkow)." -msgstr[3] "Wopisanje je předołho (maks. %d znamješkow)." - #. 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." @@ -1582,7 +1729,17 @@ msgstr "Dyrbiš administrator być, zo by skupinu wobdźěłał." msgid "Use this form to edit the group." msgstr "Wuž tutón formular, zo by skupinu wobdźěłał." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Wopisanje je předołho (maks. %d znamješkow)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Přewjele aliasow! Maksimum: %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Njepłaćiwy alias: \"%s\"" @@ -2767,11 +2924,6 @@ msgstr "Nowa skupina" msgid "Use this form to create a new group." msgstr "Wužij tutón formular, zo by nowu skupinu wutworił." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "wopisanje je předołho (maks. %d znamješkow)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Nowa powěsć" @@ -7833,17 +7985,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "před něšto sekundami" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "před něhdźe jednej mjeńšinu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7853,12 +8005,12 @@ msgstr[2] "" msgstr[3] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "před něhdźe jednej hodźinu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7868,12 +8020,12 @@ msgstr[2] "" msgstr[3] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "před něhdźe jednym dnjom" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7883,12 +8035,12 @@ msgstr[2] "" msgstr[3] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "před něhdźe jednym měsacom" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7898,7 +8050,7 @@ msgstr[2] "" msgstr[3] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "před něhdźe jednym lětom" @@ -7955,18 +8107,3 @@ msgstr "Žadyn wužiwarski ID podaty." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Dospołne mjeno je předołho (maks. 255 znamješkow)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Městno je předołho (maks. 255 znamješkow)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "To je předołho. Maksimalna powěsćowa wulkosć je %d znamješkow." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Biografija je předołha (maks. %d znamješkow)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Wopisaj sebje a swoje zajimy z %d znamješkami" diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 32949a0b14..bf7613336e 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,72 +12,73 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:05+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Hozzáférés" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "A webhely hozzáférhetőségének beállítása" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Regisztráció" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" "Tiltsuk, hogy az anonim (be nem jelentkezett) felhasználók megnézhessék a " "webhelyet?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Privát" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Legyen a regisztráció meghíváshoz kötött." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Csak meghívással" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Új regisztrációk tiltása." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Zárva" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 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 label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text to store form data in the Paths admin panel. @@ -85,7 +86,7 @@ msgstr "Hozzáférések beállításainak mentése" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -93,29 +94,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Mentés" +#. 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 msgid "No such page." msgstr "Nincs ilyen lap." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -128,41 +145,42 @@ msgid "No such user." msgstr "Nincs ilyen felhasználó." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s és barátai, %2$d oldal" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s és barátai" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s barátainak hírcsatornája (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s barátainak hírcsatornája (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "%s barátainak hírcsatornája (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -172,7 +190,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -181,9 +199,9 @@ msgstr "" "Iratkozz fel további emberek híreire, [csatlakozz egy csoporthoz](action." "groups%%%%), vagy írj valamit te magad." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -192,88 +210,106 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to them." msgstr "" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Te és a barátaid" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Frissítések %1$s felhasználótól, és barátok a következő oldalon: %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "Az API-metódus nem található." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Ez a metódus POST-ot igényel." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Nem sikerült frissíteni a felhasználót." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -288,8 +324,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -308,10 +344,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -319,8 +357,9 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Nem sikerült frissíteni a megjelenítést." @@ -339,31 +378,31 @@ msgstr "Nem sikerült a felhasználó blokkolása." msgid "Unblock user failed." msgstr "Nem sikerült a felhasználó blokkjának feloldása." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Közvetlen üzenetek tőle: %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "%s által küldött összes közvetlen üzenetek" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Közvetlen üzenetek neki: %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "%s részére küldött összes közvetlen üzenet" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Az üzenetnek nincs szövege!" @@ -398,7 +437,9 @@ msgid "" msgstr "Ne küldj üzenetet magadnak, helyette mondd el halkan." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Nincs ilyen azonosítójú állapot." @@ -414,45 +455,55 @@ msgstr "Ez az állapotjelentés már a kedvenceid között van." msgid "Could not create favorite." msgstr "Nem sikerült létrehozni a kedvencet." -#: actions/apifavoritedestroy.php:124 +#. 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 "Az az állapotjelentés nincs a kedvenceid között." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Nem sikerült törölni a kedvencet." -#: actions/apifriendshipscreate.php:110 +#. 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 "" -#: actions/apifriendshipscreate.php:119 +#. 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 "Nem lehet követni a felhasználót: %s már a listádon van." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Nem tudunk leválni a felhasználóról: nincs ilyen felhasználó." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Nem tudod nem figyelemmel követni magadat." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "" -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Nem sikerült megállapítani a forrás felhasználót." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "A cél felhasználó nem található." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -460,7 +511,7 @@ msgstr "A becenév csak kisbetűket és számokat tartalmazhat, szóközök nél #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -468,7 +519,7 @@ msgstr "A becenév már foglalt. Próbálj meg egy másikat." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -477,7 +528,7 @@ msgstr "Nem érvényes becenév." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -486,133 +537,166 @@ msgstr "A honlap érvénytelen URL-cím." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "A teljes név túl hosszú (legfeljebb 255 karakter lehet)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "A leírás túl hosszú (legfeljebb %d karakter lehet)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "A leírás túl hosszú (legfeljebb %d karakter lehet)." +msgstr[1] "A leírás túl hosszú (legfeljebb %d karakter lehet)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "A hely túl hosszú (legfeljebb 255 karakter lehet)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Túl sok álnév! Legfeljebb %d lehet." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Túl sok álnév! Legfeljebb %d lehet." +msgstr[1] "Túl sok álnév! Legfeljebb %d lehet." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Érvénytelen álnév: „%s”." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "A(z) „%s” álnév már használatban van. Próbálj meg egy másikat." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Az álnév nem egyezhet meg a becenévvel." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "A csoport nem található." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Már tagja vagy ennek a csoportnak." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "Az adminisztrátor blokkolt ebből a csoportból." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Nem sikerült %1$s felhasználót hozzáadni a %2$s csoporthoz." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Nem vagy tagja ennek a csoportnak." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Nem sikerült %1$s felhasználót eltávolítani a %2$s csoportból." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "%s csoportjai" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "" -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s csoportok" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "%s csoportok" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "" #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: 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:108 +#: 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:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Érvénytelen token." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "Nincs jogosultságod." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -637,7 +721,7 @@ msgid "Invalid nickname / password!" msgstr "Érvénytelen becenév / jelszó!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 msgid "Database error inserting oauth_token_association." msgstr "" @@ -647,7 +731,7 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -657,19 +741,29 @@ msgid "Unexpected form submission." msgstr "Váratlan űrlapbeküldés." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Egy alkalmazás szeretne csatlakozni a kontódhoz" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Elérés engedélyezése vagy tiltása" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -678,7 +772,7 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -686,7 +780,7 @@ msgstr "Kontó" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -696,7 +790,7 @@ msgstr "Becenév" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Jelszó" @@ -707,7 +801,7 @@ msgstr "Jelszó" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -715,85 +809,107 @@ msgid "Cancel" msgstr "Mégse" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Engedjük" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "Engedélyezheted vagy megtilthatod a kontód megtekintését." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: 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:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Nincs jogosultságod." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Nincs jogosultságod." + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "" -#: actions/apistatusesdestroy.php:135 +#. 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 "Nem törölheted más felhasználók állapotait." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Nincs ilyen hír." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Nem ismételheted meg a saját híredet." +#. 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:541 msgid "Already repeated that notice." msgstr "Már megismételted azt a hírt." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Állapot törölve." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Nem található ilyen azonosítójú állapot." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -801,12 +917,14 @@ msgstr[0] "Az túl hosszú. Egy hír legfeljebb %d karakterből állhat." msgstr[1] "Az túl hosszú. Egy hír legfeljebb %d karakterből állhat." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "Az API-metódus nem található." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -815,67 +933,103 @@ msgstr[0] "" msgstr[1] "" "Egy hír legfeljebb %d karakterből állhat, a melléklet URL-jét is beleértve." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Nem támogatott formátum." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / %2$s kedvencei" -#: actions/apitimelinefavorites.php:119 +#. 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 / %2$s." +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "" -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Nem sikerült a csoport frissítése." + +#. 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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "" +#. 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 "" -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s közösségi története" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s-frissítések mindenki számára!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +msgid "Unimplemented." +msgstr "" + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Hírek %s címkével" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "Az API-metódus fejlesztés alatt áll." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Nem található." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +#, fuzzy +msgid "User not found." +msgstr "Az API-metódus nem található." #: actions/attachment.php:73 msgid "No such attachment." @@ -1506,16 +1660,6 @@ msgstr "A név már foglalt. Próbálj egy másikat." msgid "Description is required." msgstr "A leírás megadása kötelező." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "A leírás túl hosszú (legfeljebb %d karakter lehet)." -msgstr[1] "A leírás túl hosszú (legfeljebb %d karakter lehet)." - #. 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." @@ -1574,7 +1718,17 @@ msgstr "" msgid "Use this form to edit the group." msgstr "Ezen űrlap segítségével szerkesztheted a csoportot." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "A leírás túl hosszú (legfeljebb %d karakter lehet)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Túl sok álnév! Legfeljebb %d lehet." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Érvénytelen álnév: „%s”" @@ -2758,11 +2912,6 @@ msgstr "Új csoport" msgid "Use this form to create a new group." msgstr "Ezen az űrlapon tudsz új csoportot létrehozni." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "a leírás túl hosszú (legfeljebb %d karakter)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Új üzenet" @@ -7830,17 +7979,17 @@ msgid "Moderator" msgstr "Moderátor" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "pár másodperce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "körülbelül egy perce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7848,12 +7997,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "körülbelül egy órája" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7861,12 +8010,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "körülbelül egy napja" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7874,12 +8023,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "körülbelül egy hónapja" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7887,7 +8036,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "körülbelül egy éve" @@ -7931,18 +8080,3 @@ msgstr "" #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "A teljes név túl hosszú (legfeljebb 255 karakter lehet)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "A hely túl hosszú (legfeljebb 255 karakter lehet)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Ez túl hosszú. Az üzenet mérete legfeljebb %d karakter lehet." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Az bemutatkozás túl hosszú (max %d karakter)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Jellemezd önmagad és az érdeklődési köröd %d karakterben" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 4abe33ae73..6314e101d5 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,70 +9,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:06+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Accesso" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Configurationes de accesso al sito" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Registration" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Prohibir al usatores anonyme (sin session aperte) de vider le sito?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Private" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Permitter le registration solmente al invitatos." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Solmente per invitation" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Disactivar le creation de nove contos." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Claudite" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" msgstr "Salveguardar configurationes de accesso" +#. 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 to store form data in the Paths admin panel. @@ -80,7 +81,7 @@ msgstr "Salveguardar configurationes de accesso" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -88,29 +89,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" +#. 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 msgid "No such page." msgstr "Pagina non existe." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -123,41 +140,42 @@ msgid "No such user." msgstr "Iste usator non existe." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s e amicos, pagina %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s e amicos" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Syndication pro le amicos de %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Syndication pro le amicos de %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Syndication pro le amicos de %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -167,7 +185,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -176,9 +194,9 @@ msgstr "" "Proba subscriber te a altere personas, [face te membro de un gruppo](%%" "action.groups%%) o publica alique tu mesme." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -189,7 +207,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -198,65 +216,80 @@ msgstr "" "Proque non [registrar un conto](%%%%action.register%%%%) e postea dar un " "pulsata a %s o publicar un message a su attention." -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Tu e amicos" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualisationes de %1$s e su amicos in %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "Methodo API non trovate." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Iste methodo require un POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -265,16 +298,19 @@ msgstr "" "im, none." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Non poteva actualisar le usator." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -289,8 +325,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -309,10 +345,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -320,8 +358,9 @@ msgid "Unable to save your design settings." msgstr "Impossibile salveguardar le configurationes del apparentia." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Non poteva actualisar le apparentia." @@ -340,31 +379,31 @@ msgstr "Le blocada del usator ha fallite." msgid "Unblock user failed." msgstr "Le disblocada del usator ha fallite." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Messages directe de %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Tote le messages directe inviate de %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Messages directe a %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Tote le messages directe inviate a %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Message sin texto!" @@ -399,7 +438,9 @@ msgid "" msgstr "Non invia un message a te mesme; il suffice susurrar lo discretemente." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Nulle stato trovate con iste ID." @@ -415,45 +456,55 @@ msgstr "Iste stato es ja favorite." msgid "Could not create favorite." msgstr "Non poteva crear le favorite." -#: actions/apifavoritedestroy.php:124 +#. 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 "Iste stato non es favorite." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Non poteva deler le favorite." -#: actions/apifriendshipscreate.php:110 +#. 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 "Non poteva sequer le usator: profilo non trovate." -#: actions/apifriendshipscreate.php:119 +#. 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 "Non poteva sequer le usator: %s es ja in tu lista." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Non poteva cessar de sequer le usator: Usator non trovate." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Tu non pote cessar de sequer te mesme." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "Duo IDs o pseudonymos valide debe esser fornite." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Non poteva determinar le usator de origine." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Non poteva trovar le usator de destination." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -461,7 +512,7 @@ msgstr "Le pseudonymo pote solmente haber minusculas e numeros, sin spatios." #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -469,7 +520,7 @@ msgstr "Pseudonymo ja in uso. Proba un altere." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -478,7 +529,7 @@ msgstr "Non un pseudonymo valide." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -487,132 +538,162 @@ msgstr "Le pagina personal non es un URL valide." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 -#, fuzzy msgid "Full name is too long (maximum 255 characters)." -msgstr "Le nomine complete es troppo longe (max. 255 characteres)." +msgstr "Le nomine complete es troppo longe (maximo 255 characteres)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 #, php-format -msgid "Description is too long (max %d chars)." -msgstr "Description es troppo longe (max %d charachteres)." +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Description es troppo longe (maximo %d characteres)." +msgstr[1] "Description es troppo longe (maximo %d characteres)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 -#, fuzzy msgid "Location is too long (maximum 255 characters)." -msgstr "Loco es troppo longe (max. 255 characteres)." +msgstr "Loco es troppo longe (maximo 255 characteres)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 #, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Troppo de aliases! Maximo: %d." +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Troppo de aliases! Solmente un es permittite." +msgstr[1] "Troppo de aliases! Maximo permittite: %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Alias invalide: \"%s\"." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Le alias \"%s\" es ja in uso. Proba un altere." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Le alias non pote esser identic al pseudonymo." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Gruppo non trovate." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Tu es ja membro de iste gruppo." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "Le administrator te ha blocate de iste gruppo." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Non poteva inscriber le usator %1$s in le gruppo %2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Tu non es membro de iste gruppo." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Non poteva remover le usator %1$s del gruppo %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Gruppos de %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "Gruppos de %1$s del quales %2$s es membro." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Gruppos de %s" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "gruppos in %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Le incargamento ha fallite." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 msgid "Invalid request token or verifier." msgstr "Indicio de requesta o verificator invalide." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "Nulle parametro oauth_token fornite." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 msgid "Invalid request token." msgstr "Indicio de requesta invalide." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 -#, fuzzy +#: actions/apioauthauthorize.php:121 msgid "Request token already authorized." -msgstr "Tu non es autorisate." +msgstr "Indicio de requesta jam autorisate." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -637,12 +718,10 @@ msgid "Invalid nickname / password!" msgstr "Nomine de usator o contrasigno invalide!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 -#, fuzzy +#: actions/apioauthauthorize.php:217 msgid "Database error inserting oauth_token_association." msgstr "" -"Error del base de datos durante le insertion del usator del application " -"OAuth." +"Error del base de datos durante le insertion de oauth_token_association." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Client error displayed submitting invalid form data for edit application. @@ -650,7 +729,7 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -660,19 +739,32 @@ msgid "Unexpected form submission." msgstr "Submission de formulario inexpectate." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Un application vole connecter se a tu conto" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Permitter o refusar accesso" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +msgstr "" +"Un application vole poter %3$s le datos de tu conto de %4" +"$s. Tu debe solmente dar accesso a tu conto de %4$s a tertie personas in le " +"quales tu ha confidentia." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -684,14 +776,14 @@ msgstr "" "accesso a tu conto de %4$s a tertie personas in le quales tu ha confidentia." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 msgctxt "LEGEND" msgid "Account" msgstr "Conto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -701,7 +793,7 @@ msgstr "Pseudonymo" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasigno" @@ -712,7 +804,7 @@ msgstr "Contrasigno" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -720,38 +812,52 @@ msgid "Cancel" msgstr "Cancellar" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 msgctxt "BUTTON" msgid "Allow" msgstr "Permitter" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 msgid "Authorize access to your account information." msgstr "Autorisar le accesso al informationes de tu conto." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 msgid "Authorization canceled." msgstr "Autorisation cancellate." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "Le indicio de requesta %s ha essite revocate." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, php-format -msgid "You have successfully authorized %s." -msgstr "Tu ha autorisate %s con successo." +#. 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 "Application autorisate con successo" -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +msgstr "" +"Per favor retorna al application e entra le sequente codice de securitate " +"pro completar le processo." + +#. 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:589 +#: actions/apioauthauthorize.php:632 +#, php-format +msgid "You have successfully authorized %s" +msgstr "Autorisation de %s succedite" + +#. 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 " @@ -760,45 +866,54 @@ msgstr "" "Per favor retorna a %s e entra le sequente codice de securitate pro " "completar le processo." -#: actions/apistatusesdestroy.php:112 +#. 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 "Iste methodo require un commando POST o DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Tu non pote deler le stato de un altere usator." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Nota non trovate." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Non pote repeter tu proprie nota." +#. 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:541 msgid "Already repeated that notice." msgstr "Iste nota ha ja essite repetite." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Stato delite." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Nulle stato trovate con iste ID." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "Le cliente debe fornir un parametro 'status' con un valor." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, 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." @@ -808,11 +923,13 @@ msgstr[1] "" "Isto es troppo longe. Le longitude maximal de notas es %d characteres." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 msgid "Parent notice not found." msgstr "Nota genitor non trovate." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -821,68 +938,103 @@ msgstr[0] "" msgstr[1] "" "Le longitude maximal de notas es %d characteres, includente le URL adjungite." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Formato non supportate." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Favorites de %2$s" -#: actions/apitimelinefavorites.php:119 +#. 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 / %2$s." -msgstr "%1$s actualisationes favoritisate per %2$s / %2$s." +msgid "%1$s updates favorited by %2$s / %3$s." +msgstr "%1$s actualisationes favoritisate per %2$s / %3$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, php-format +msgid "Could not generate feed for group - %s" +msgstr "Non poteva generar un syndication pro le gruppo %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. +#: actions/apitimelinementions.php:115 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Actualisationes que mentiona %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 "" "Actualisationes de %1$s que responde al actualisationes de %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Chronologia public de %s" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "Actualisationes de totes in %s!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +msgid "Unimplemented." +msgstr "Non implementate." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Repetite a %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Repetitiones de %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Notas con etiquetta %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualisationes con etiquetta %1$s in %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "Methodo API in construction." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Non trovate." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "Usator non trovate." #: actions/attachment.php:73 msgid "No such attachment." @@ -1518,16 +1670,6 @@ msgstr "Nomine ja in uso. Proba un altere." msgid "Description is required." msgstr "Le description es requirite." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Description es troppo longe (maximo %d characteres)." -msgstr[1] "Description es troppo longe (maximo %d characteres)." - #. 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." @@ -1585,7 +1727,17 @@ msgstr "Tu debe esser administrator pro modificar le gruppo." msgid "Use this form to edit the group." msgstr "Usa iste formulario pro modificar le gruppo." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Description es troppo longe (max %d charachteres)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Troppo de aliases! Maximo: %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Alias invalide: \"%s\"" @@ -2783,7 +2935,6 @@ msgstr "Nulle stato actual." #. TRANS: This is the title of the form for adding a new application. #: actions/newapplication.php:52 -#, fuzzy msgid "New application" msgstr "Nove application" @@ -2797,18 +2948,16 @@ msgid "Use this form to register a new application." msgstr "Usa iste formulario pro registrar un nove application." #: actions/newapplication.php:169 -#, fuzzy msgid "Name is too long (maximum 255 chars)." -msgstr "Le nomine es troppo longe (max. 255 characteres)." +msgstr "Le nomine es troppo longe (maximo 255 characteres)." #: actions/newapplication.php:184 msgid "Source URL is required." msgstr "Le URL de origine es requirite." #: actions/newapplication.php:199 -#, fuzzy msgid "Organization is too long (maximum 255 chars)." -msgstr "Le organisation es troppo longe (max. 255 characteres)." +msgstr "Le organisation es troppo longe (maximo 255 characteres)." #: actions/newapplication.php:266 actions/newapplication.php:275 msgid "Could not create application." @@ -2822,11 +2971,6 @@ msgstr "Nove gruppo" msgid "Use this form to create a new group." msgstr "Usa iste formulario pro crear un nove gruppo." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "description es troppo longe (max %d chars)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Nove message" @@ -3617,11 +3761,11 @@ msgstr "" #. 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:230 -#, fuzzy, php-format +#, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." -msgstr[0] "Bio es troppo longe (max %d character)." -msgstr[1] "Bio es troppo longe (max %d characteres)." +msgstr[0] "Bio es troppo longe (maximo %d character)." +msgstr[1] "Bio es troppo longe (maximo %d characteres)." #. TRANS: Validation error in form for profile settings. #: actions/profilesettings.php:273 actions/siteadminpanel.php:151 @@ -3630,9 +3774,8 @@ msgstr "Fuso horari non seligite." #. TRANS: Validation error in form for profile settings. #: actions/profilesettings.php:281 -#, fuzzy msgid "Language is too long (maximum 50 characters)." -msgstr "Lingua es troppo longe (max. 50 characteres)." +msgstr "Lingua es troppo longe (maximo 50 characteres)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. @@ -5773,7 +5916,7 @@ msgstr "Nulle signule usator definite pro le modo de singule usator." #. TRANS: Server exception. #: classes/User.php:906 msgid "Single-user mode code called when not enabled." -msgstr "" +msgstr "Codice in modo de usator singule appellate sin esser activate." #. TRANS: Server exception thrown when creating a group failed. #: classes/User_group.php:495 @@ -6269,12 +6412,13 @@ msgstr "Non poteva crear application OAuth anonyme." msgid "" "Could not find a profile and application associated with the request token." msgstr "" +"Non poteva trovar un profilo e application associate con le indicio de " +"requesta." #. TRANS: Exception thrown when no access token can be issued. #: lib/apioauthstore.php:186 -#, fuzzy msgid "Could not issue access token." -msgstr "Non poteva inserer message." +msgstr "Non poteva emitter le indicio de accesso." #. TRANS: Server error displayed when a database error occurs. #: lib/apioauthstore.php:243 @@ -7872,9 +8016,8 @@ msgstr "Revocar le rolo \"%s\" de iste usator" #. TRANS: Client error on action trying to visit a non-existing page. #: lib/router.php:847 -#, fuzzy msgid "Page not found." -msgstr "Methodo API non trovate." +msgstr "Pagina non trovate." #: lib/sandboxform.php:67 msgid "Sandbox" @@ -8111,17 +8254,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "alcun secundas retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "circa un minuta retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8129,12 +8272,12 @@ msgstr[0] "un minuta" msgstr[1] "%d minutas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "circa un hora retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8142,12 +8285,12 @@ msgstr[0] "un hora" msgstr[1] "%d horas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "circa un die retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8155,12 +8298,12 @@ msgstr[0] "un die" msgstr[1] "%d dies" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "circa un mense retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8168,7 +8311,7 @@ msgstr[0] "un mense" msgstr[1] "%d menses" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "circa un anno retro" @@ -8188,16 +8331,16 @@ msgstr "%s non es un color valide! Usa 3 o 6 characteres hexadecimal." #: lib/xmppmanager.php:285 #, php-format msgid "Unknown user. Go to %s to add your address to your account" -msgstr "" +msgstr "Usator incognite. Vade a %s pro adder tu adresse a tu conto." #. 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:404 -#, fuzzy, php-format +#, 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] "Message troppo longe - maximo es %1$d characteres, tu inviava %2$d." -msgstr[1] "Message troppo longe - maximo es %1$d characteres, tu inviava %2$d." +msgstr[0] "Message troppo longe. Maximo es %1$d character, tu inviava %2$d." +msgstr[1] "Message troppo longe. Maximo es %1$d characteres, tu inviava %2$d." #: scripts/restoreuser.php:82 #, php-format @@ -8212,18 +8355,3 @@ msgstr "Nulle usator specificate; le usator de reserva es usate." #, php-format msgid "%d entries in backup." msgstr "%d entratas in copia de reserva." - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Le nomine complete es troppo longe (max. 255 characteres)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Loco es troppo longe (max. 255 characteres)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Isto es troppo longe. Le maximo es %d characteres." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Bio es troppo longe (max %d chars)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Describe te e tu interesses in %d characteres" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index d3f328bfa1..94c7d592be 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -9,76 +9,77 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:16+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:08+0000\n" "Language-Team: Icelandic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 #, fuzzy msgid "Access" msgstr "Samþykkja" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 #, fuzzy msgid "Site access settings" msgstr "Stillingar fyrir mynd" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 #, fuzzy msgid "Registration" msgstr "Nýskrá" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 #, fuzzy msgctxt "LABEL" msgid "Private" msgstr "Friðhelgi" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "" #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 #, fuzzy msgid "Invite only" msgstr "Bjóða" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "" #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 #, fuzzy msgid "Save access settings" msgstr "Stillingar fyrir mynd" +#. 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 to store form data in the Paths admin panel. @@ -86,7 +87,7 @@ msgstr "Stillingar fyrir mynd" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -95,6 +96,7 @@ msgctxt "BUTTON" msgid "Save" msgstr "Vista" +#. 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 @@ -102,23 +104,38 @@ msgstr "Vista" msgid "No such page." msgstr "Ekkert þannig merki." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -131,41 +148,42 @@ msgid "No such user." msgstr "Enginn svoleiðis notandi." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%s og vinirnir" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s og vinirnir" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -173,16 +191,16 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -191,91 +209,109 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to them." msgstr "" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 #, fuzzy msgid "You and friends" msgstr "%s og vinirnir" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Færslur frá %1$s og vinum á %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 #, fuzzy msgid "API method not found." msgstr "Aðferð í forritsskilum fannst ekki!" #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Þessi aðferð krefst POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 #, fuzzy msgid "Could not update user." msgstr "Gat ekki uppfært notanda." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -291,8 +327,8 @@ msgstr "Gat ekki vistað persónulega síðu." #. 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -307,10 +343,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -318,8 +356,9 @@ msgid "Unable to save your design settings." msgstr "" #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. 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 "Gat ekki uppfært hóp." @@ -340,31 +379,31 @@ msgstr "Mistókst að loka á notanda." msgid "Unblock user failed." msgstr "Mistókst að opna fyrir notanda." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, fuzzy, php-format msgid "Direct messages from %s" msgstr "Bein skilaboð til %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Öll bein skilaboð send frá %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Bein skilaboð til %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Öll bein skilaboð til %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Enginn texti í skilaboðum!" @@ -400,7 +439,9 @@ msgstr "" "staðinn." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Engin staða fundin með þessu kenni." @@ -417,53 +458,63 @@ msgstr "Þetta babl er nú þegar í uppáhaldi!" msgid "Could not create favorite." msgstr "Gat ekki búið til uppáhald." -#: actions/apifavoritedestroy.php:124 +#. TRANS: Client error displayed when trying to remove a favourite that was not a favourite. +#: actions/apifavoritedestroy.php:122 #, fuzzy msgid "That status is not a favorite." msgstr "Þetta babl er ekki í uppáhaldi!" -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Gat ekki eytt uppáhaldi." -#: actions/apifriendshipscreate.php:110 +#. 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 "" "Get ekki fylgst með notanda: %s. Þessi notandi er nú þegar í listanum þínum." -#: actions/apifriendshipscreate.php:119 +#. 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 "" "Get ekki fylgst með notanda: %s. Þessi notandi er nú þegar í listanum þínum." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "" "Get ekki fylgst með notanda: %s. Þessi notandi er nú þegar í listanum þínum." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 #, fuzzy msgid "You cannot unfollow yourself." msgstr "Gat ekki uppfært notanda." -#: actions/apifriendshipsexists.php:91 +#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists. +#: actions/apifriendshipsexists.php:88 #, fuzzy msgid "Two valid IDs or screen_names must be supplied." msgstr "Tvo notendakenni eða skjáarnöfn verða að vera uppgefin." -#: actions/apifriendshipsshow.php:134 +#. 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 "Gat ekki uppfært notanda." -#: actions/apifriendshipsshow.php:142 +#. 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 "Gat ekki uppfært notanda." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -471,7 +522,7 @@ msgstr "Stuttnefni geta bara verið lágstafir og tölustafir en engin bil." #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -479,7 +530,7 @@ msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -488,7 +539,7 @@ msgstr "Ekki tækt stuttnefni." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -497,137 +548,170 @@ msgstr "Heimasíða er ekki gild vefslóð." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Staðsetning er of löng (í mesta lagi %d stafir)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Staðsetning er of löng (í mesta lagi %d stafir)." +msgstr[1] "Staðsetning er of löng (í mesta lagi %d stafir)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 #, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "" +msgstr[1] "" -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, fuzzy, php-format msgid "Invalid alias: \"%s\"." msgstr "Ógilt merki: \"%s\"" -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Fannst ekki." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 #, fuzzy msgid "You are already a member of that group." msgstr "Þú ert nú þegar meðlimur í þessum hópi" +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "" +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Gat ekki skráð hópmeðlimi." -#: actions/apigroupleave.php:116 +#. 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 "Þú ert ekki meðlimur í þessum hópi." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Gat ekki búið til hóp." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, fuzzy, php-format msgid "%s's groups" msgstr "Hópar %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 msgid "%1$s groups %2$s is a member of." msgstr "Hópar sem %s er meðlimur í" -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Hópar %s" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, fuzzy, php-format msgid "groups on %s" msgstr "Hópsaðgerðir" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 #, fuzzy msgid "Upload failed." msgstr "Misheppnuð skipun" #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "Ótækt bablinnihald" #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: 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:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Ótæk stærð." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "Þú ert ekki áskrifandi." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -653,7 +737,7 @@ msgid "Invalid nickname / password!" msgstr "Ótækt notendanafn eða lykilorð." #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s" @@ -664,7 +748,7 @@ msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s" #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -674,19 +758,29 @@ msgid "Unexpected form submission." msgstr "Bjóst ekki við innsendingu eyðublaðs." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: 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, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -695,7 +789,7 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -703,7 +797,7 @@ msgstr "Aðgangur" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -713,7 +807,7 @@ msgstr "Stuttnefni" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Lykilorð" @@ -724,7 +818,7 @@ msgstr "Lykilorð" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 #, fuzzy @@ -733,86 +827,108 @@ msgid "Cancel" msgstr "Hætta við" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Allt" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: 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:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "Enginn staðfestingarlykill." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Þú ert ekki áskrifandi." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Þú ert ekki áskrifandi." + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Þessi aðferð krefst POST eða DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Þú getur ekki eytt stöðu annars notanda." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Ekkert svoleiðis babl." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 #, fuzzy msgid "Cannot repeat your own notice." msgstr "Get ekki kveikt á tilkynningum." +#. 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:541 msgid "Already repeated that notice." msgstr "Get ekki eytt þessu babli." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "" -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Engin staða með þessu kenni fannst." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -820,80 +936,118 @@ msgstr[0] "Þetta er of langt. Hámarkslengd babls er 140 tákn." msgstr[1] "Þetta er of langt. Hámarkslengd babls er 140 tákn." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "Aðferð í forritsskilum fannst ekki!" -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, 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] "" msgstr[1] "" -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 "Skráarsnið myndar ekki stutt." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "Staða %1$s á %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s færslur sem svara færslum frá %2$s / %3$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Gat ekki uppfært hóp." + +#. 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 msgid "%1$s / Updates mentioning %2$s" msgstr "Staða %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 "%1$s færslur sem svara færslum frá %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Almenningsrás %s" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s færslur frá öllum!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Skipun hefur ekki verið fullbúin" + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, fuzzy, php-format msgid "Repeated to %s" msgstr "Svör við %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 msgid "Repeats of %s" msgstr "Svör við %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Babl merkt með %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 msgid "Updates tagged with %1$s on %2$s!" msgstr "Færslur frá %1$s á %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "Aðferð í forritsskilum er í þróun." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Fannst ekki." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "Aðferð í forritsskilum fannst ekki!" #: actions/attachment.php:73 #, fuzzy @@ -1554,16 +1708,6 @@ msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað." msgid "Description is required." msgstr "Lýsing" -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Staðsetning er of löng (í mesta lagi %d stafir)." -msgstr[1] "Staðsetning er of löng (í mesta lagi %d stafir)." - #. 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." @@ -1624,7 +1768,17 @@ msgstr "Þú verður að hafa skráð þig inn til að búa til hóp." msgid "Use this form to edit the group." msgstr "Notaðu þetta eyðublað til að breyta hópnum." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Staðsetning er of löng (í mesta lagi %d stafir)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Ógilt merki: \"%s\"" @@ -2884,11 +3038,6 @@ msgstr "Nýr hópur" msgid "Use this form to create a new group." msgstr "Notaðu þetta eyðublað til að búa til nýjan hóp." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Ný skilaboð" @@ -8095,17 +8244,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "fyrir nokkrum sekúndum" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "fyrir um einni mínútu síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8113,12 +8262,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "fyrir um einum klukkutíma síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8126,12 +8275,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "fyrir um einum degi síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8139,12 +8288,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "fyrir um einum mánuði síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8152,7 +8301,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "fyrir um einu ári síðan" @@ -8199,19 +8348,3 @@ msgstr "Engin persónuleg síða tilgreind" #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Þetta er of langt. Hámarkslengd babls er %d tákn." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Staðsetning er of löng (í mesta lagi %d stafir)." - -#, fuzzy -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Lýstu þér og áhugamálum þínum í 140 táknum" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index a705a713cb..f7c8837312 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -11,72 +11,73 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:10+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\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: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Accesso" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Impostazioni di accesso al sito" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Registrazione" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" "Proibire agli utenti anonimi (che non hanno effettuato l'accesso) di vedere " "il sito?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Privato" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Rende la registrazione solo su invito" #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Solo invito" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Disabilita la creazione di nuovi account" #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Chiuso" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" msgstr "Salva impostazioni di accesso" +#. 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 to store form data in the Paths admin panel. @@ -84,7 +85,7 @@ msgstr "Salva impostazioni di accesso" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -92,29 +93,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Salva" +#. 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 msgid "No such page." msgstr "Pagina inesistente." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -127,41 +144,42 @@ msgid "No such user." msgstr "Utente inesistente." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s e amici, pagina %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s e amici" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed degli amici di %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed degli amici di %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed degli amici di %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -171,7 +189,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -180,9 +198,9 @@ msgstr "" "Prova ad abbonarti a più persone, [entra in un gruppo](%%action.groups%%) o " "scrivi un messaggio." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -193,72 +211,87 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to them." msgstr "Perché non [crei un accout](%%action.register%%) e ne scrivi uno tu!" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Tu e i tuoi amici" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Messaggi da %1$s e amici su %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "Metodo delle API non trovato." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Questo metodo richiede POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -267,16 +300,19 @@ msgstr "" "\"sms\", \"im\" o \"none\"." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Impossibile aggiornare l'utente." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -291,8 +327,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -311,10 +347,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -322,8 +360,9 @@ msgid "Unable to save your design settings." msgstr "Impossibile salvare la impostazioni dell'aspetto." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Impossibile aggiornare l'aspetto." @@ -342,31 +381,31 @@ msgstr "Blocco dell'utente non riuscito." msgid "Unblock user failed." msgstr "Sblocco dell'utente non riuscito." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Messaggi diretti da %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Tutti i messaggi diretti inviati da %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Messaggi diretti a %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Tutti i messaggi diretti inviati a %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Nessun testo nel messaggio!" @@ -402,7 +441,9 @@ msgid "" msgstr "Non inviarti un messaggio, piuttosto ripetilo a voce dolcemente." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Nessuno messaggio trovato con quel ID." @@ -418,45 +459,55 @@ msgstr "Questo messaggio è già un preferito." msgid "Could not create favorite." msgstr "Impossibile creare un preferito." -#: actions/apifavoritedestroy.php:124 +#. 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 "Questo messaggio non è un preferito." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Impossibile eliminare un preferito." -#: actions/apifriendshipscreate.php:110 +#. 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 "Impossibile non seguire l'utente: utente non trovato." -#: actions/apifriendshipscreate.php:119 +#. 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 "Impossibile seguire l'utente: %s è già nel tuo elenco." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Impossibile non seguire l'utente: utente non trovato." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Non puoi non seguirti." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "Devono essere forniti due ID o screen_names." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Impossibile determinare l'utente sorgente." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Impossibile trovare l'utente destinazione." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -466,7 +517,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -474,7 +525,7 @@ msgstr "Soprannome già in uso. Prova con un altro." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -483,7 +534,7 @@ msgstr "Non è un soprannome valido." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -492,134 +543,167 @@ msgstr "L'indirizzo della pagina web non è valido." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Nome troppo lungo (max 255 caratteri)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "La descrizione è troppo lunga (max %d caratteri)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "La descrizione è troppo lunga (max %d caratteri)." +msgstr[1] "La descrizione è troppo lunga (max %d caratteri)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Ubicazione troppo lunga (max 255 caratteri)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Troppi alias! Massimo %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Troppi alias! Massimo %d." +msgstr[1] "Troppi alias! Massimo %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Alias non valido: \"%s\"." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "L'alias \"%s\" è già in uso. Prova con un altro." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "L'alias non può essere lo stesso del soprannome." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Gruppo non trovato." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Fai già parte di quel gruppo." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "L'amministratore ti ha bloccato l'accesso a quel gruppo." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Impossibile iscrivere l'utente %1$s al gruppo %2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Non fai parte di questo gruppo." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Impossibile rimuovere l'utente %1$s dal gruppo %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Gruppi di %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "Gruppi del sito %1$s a cui %2$s è iscritto." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Gruppi di %s" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "Gruppi su %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Caricamento non riuscito." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "Token di accesso specificato non valido." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "Nessun parametro oauth_token fornito." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Token non valido." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "Autorizzazione non presente." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -645,7 +729,7 @@ msgid "Invalid nickname / password!" msgstr "Nome utente o password non valido." #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "Errore nel database nell'inserire l'applicazione utente OAuth." @@ -656,7 +740,7 @@ msgstr "Errore nel database nell'inserire l'applicazione utente OAuth." #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -666,19 +750,32 @@ msgid "Unexpected form submission." msgstr "Invio del modulo inaspettato." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Un'applicazione vorrebbe collegarsi al tuo account" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Consenti o nega l'accesso" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"L'applicazione %1$s di %2$s vorrebbe poter " +"%3$s ai dati del tuo account %4$s. È consigliato fornire " +"accesso al proprio account %4$s solo ad applicazioni di cui ci si può fidare." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -690,7 +787,7 @@ msgstr "" "accesso al proprio account %4$s solo ad applicazioni di cui ci si può fidare." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -698,7 +795,7 @@ msgstr "Account" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -708,7 +805,7 @@ msgstr "Soprannome" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Password" @@ -719,7 +816,7 @@ msgstr "Password" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -727,86 +824,108 @@ msgid "Cancel" msgstr "Annulla" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Consenti" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "Consenti o nega l'accesso alle informazioni del tuo account." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "Conferma della messaggistica annullata." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, fuzzy, php-format msgid "The request token %s has been revoked." msgstr "Il token di richiesta %s è stato rifiutato o revocato." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Autorizzazione non presente." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Autorizzazione non presente." + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Questo metodo richiede POST o DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Non puoi eliminare il messaggio di un altro utente." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Nessun messaggio." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Non puoi ripetere un tuo messaggio." +#. 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:541 msgid "Already repeated that notice." msgstr "Hai già ripetuto quel messaggio." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Messaggio eliminato." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Nessuno stato trovato con quel ID." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "Il client deve fornire un parametro \"status\" con un valore." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -814,12 +933,14 @@ msgstr[0] "Troppo lungo. Lunghezza massima %d caratteri." msgstr[1] "Troppo lungo. Lunghezza massima %d caratteri." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "Metodo delle API non trovato." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -828,67 +949,103 @@ msgstr[0] "" msgstr[1] "" "La dimensione massima di un messaggio è di %d caratteri, compreso l'URL." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Formato non supportato." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Preferiti da %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s aggiornamenti preferiti da %2$s / %3$s" -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Impossibile aggiornare il gruppo." + +#. 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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Messaggi che citano %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 "%1$s messaggi in risposta a quelli da %2$s / %3$s" -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Attività pubblica di %s" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "Aggiornamenti di %s da tutti!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Metodo non implementato" + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Ripetuto a %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Ripetizioni di %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Messaggi etichettati con %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Messaggi etichettati con %1$s su %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "Metodo delle API in lavorazione." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Non trovato." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "Metodo delle API non trovato." #: actions/attachment.php:73 msgid "No such attachment." @@ -1529,16 +1686,6 @@ msgstr "Nome già in uso. Prova con un altro." msgid "Description is required." msgstr "La descrizione è richiesta." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "La descrizione è troppo lunga (max %d caratteri)." -msgstr[1] "La descrizione è troppo lunga (max %d caratteri)." - #. 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." @@ -1597,7 +1744,17 @@ msgstr "Devi essere amministratore per modificare il gruppo." msgid "Use this form to edit the group." msgstr "Usa questo modulo per modificare il gruppo." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "La descrizione è troppo lunga (max %d caratteri)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Troppi alias! Massimo %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Alias non valido: \"%s\"" @@ -2840,11 +2997,6 @@ msgstr "Nuovo gruppo" msgid "Use this form to create a new group." msgstr "Usa questo modulo per creare un nuovo gruppo." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "La descrizione è troppo lunga (max %d caratteri)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Nuovo messaggio" @@ -8151,17 +8303,17 @@ msgid "Moderator" msgstr "Moderatore" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "pochi secondi fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "circa un minuto fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8169,12 +8321,12 @@ msgstr[0] "circa un minuto fa" msgstr[1] "circa %d minuti fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "circa un'ora fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8182,12 +8334,12 @@ msgstr[0] "circa un'ora fa" msgstr[1] "circa %d ore fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "circa un giorno fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8195,12 +8347,12 @@ msgstr[0] "circa un giorno fa" msgstr[1] "circa %d giorni fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "circa un mese fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8208,7 +8360,7 @@ msgstr[0] "circa un mese fa" msgstr[1] "circa %d mesi fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "circa un anno fa" @@ -8252,19 +8404,3 @@ msgstr "Nessun utente specificato: viene usato l'utente di backup." #, php-format msgid "%d entries in backup." msgstr "%d voci nel backup." - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Nome troppo lungo (max 255 caratteri)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Ubicazione troppo lunga (max 255 caratteri)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "" -#~ "Troppo lungo. La dimensione massima di un messaggio è di %d caratteri." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "La biografia è troppo lunga (max %d caratteri)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Descriviti assieme ai tuoi interessi in %d caratteri" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 134d483200..37b1dea63c 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -12,70 +12,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:15+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\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: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "アクセス" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "サイトアクセス設定" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "登録" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "匿名ユーザー(ログインしていません)がサイトを見るのを禁止しますか?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "プライバシー" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "招待のみ登録する" #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "招待のみ" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "新規登録を無効。" #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "閉じられた" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" 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 to store form data in the Paths admin panel. @@ -83,7 +84,7 @@ msgstr "アクセス設定の保存" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -92,29 +93,45 @@ msgctxt "BUTTON" msgid "Save" 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 msgid "No such page." msgstr "そのようなタグはありません。" +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -127,41 +144,42 @@ msgid "No such user." msgstr "そのようなユーザはいません。" #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s と友人、ページ %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s と友人" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s の友人のフィード (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s の友人のフィード (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "%s の友人のフィード (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -169,7 +187,7 @@ msgstr "これは %s と友人のタイムラインです。まだ誰も投稿 #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -178,9 +196,9 @@ msgstr "" "もっと多くの人をフォローしてみましょう。[グループに参加](%%action.groups%%) " "してみたり、何か投稿してみましょう。" -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -191,7 +209,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -200,65 +218,80 @@ msgstr "" "なぜ [アカウント登録](%%action.register%%) しないのですか。そして最初の投稿を" "してください!" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "あなたと友人" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s に %1$s と友人からの更新があります!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "このメソッドには POST が必要です。" #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 #, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " @@ -268,16 +301,19 @@ msgstr "" "sms, im, none" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -292,8 +328,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -309,10 +345,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -320,8 +358,9 @@ msgid "Unable to save your design settings." msgstr "あなたのデザイン設定を保存できません。" #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "デザインを更新できませんでした。" @@ -340,31 +379,31 @@ msgstr "ユーザのブロックに失敗しました。" msgid "Unblock user failed." msgstr "ユーザのブロック解除に失敗しました。" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "%s からのダイレクトメッセージ" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "%s から送られた全てのダイレクトメッセージ" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "%s へのダイレクトメッセージ" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "%s へ送った全てのダイレクトメッセージ" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "メッセージの本文がありません!" @@ -398,7 +437,9 @@ msgstr "" "自分自身にメッセージを送ることはできません; かわりに独り言を言いましょう。" #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "そのIDのステータスが見つかりません。" @@ -414,47 +455,57 @@ msgstr "このステータスはすでにお気に入りです。" msgid "Could not create favorite." msgstr "お気に入りを作成できません。" -#: actions/apifavoritedestroy.php:124 +#. 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 "そのステータスはお気に入りではありません。" -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "お気に入りを取り消すことができません。" -#: actions/apifriendshipscreate.php:110 +#. 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 "ユーザのフォローを停止できませんでした: ユーザが見つかりません。" -#: actions/apifriendshipscreate.php:119 +#. 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 "" "ユーザをフォローできませんでした: %s は既にあなたのリストに入っています。" -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "ユーザのフォローを停止できませんでした: ユーザが見つかりません。" +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "自分自身をフォロー停止することはできません。" -#: actions/apifriendshipsexists.php:91 +#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists. +#: actions/apifriendshipsexists.php:88 #, fuzzy msgid "Two valid IDs or screen_names must be supplied." msgstr "ふたつのIDかスクリーンネームが必要です。" -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "ソースユーザーを決定できません。" -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "ターゲットユーザーを見つけられません。" #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -464,7 +515,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -472,7 +523,7 @@ msgstr "そのニックネームは既に使用されています。他のもの #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -481,7 +532,7 @@ msgstr "有効なニックネームではありません。" #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -490,135 +541,166 @@ msgstr "ホームページのURLが不適切です。" #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "フルネームが長すぎます。(255字まで)" -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "記述が長すぎます。(最長%d字)" +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "記述が長すぎます。(最長%d字)" +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "場所が長すぎます。(255字まで)" -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "別名が多すぎます! 最大 %d。" +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "別名が多すぎます! 最大 %d。" -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, fuzzy, php-format msgid "Invalid alias: \"%s\"." msgstr "不正な別名: \"%s\"" -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "別名 \"%s\" は既に使用されています。他のものを試してみて下さい。" -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "別名はニックネームと同じではいけません。" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: 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: 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 "管理者によってこのグループからブロックされています。" +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "ユーザ %1$s はグループ %2$s に参加できません。" -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "このグループのメンバーではありません。" +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "ユーザ %1$s をグループ %2$s から削除できません。" -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "%s のグループ" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 msgid "%1$s groups %2$s is a member of." msgstr "グループ %s はメンバー" -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s グループ" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "%s 上のグループ" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 #, fuzzy msgid "Upload failed." msgstr "ファイルアップロード" #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "不正なログイントークンが指定されています。" #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "oauth_token パラメータは提供されませんでした。" #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "不正なトークン。" #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy 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:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -643,7 +725,7 @@ msgid "Invalid nickname / password!" msgstr "不正なユーザ名またはパスワード。" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "OAuth アプリケーションユーザの追加時DBエラー。" @@ -654,7 +736,7 @@ msgstr "OAuth アプリケーションユーザの追加時DBエラー。" #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -664,19 +746,29 @@ 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:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "アプリケーションはあなたのアカウントに接続したいです" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: 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, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -685,7 +777,7 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -693,7 +785,7 @@ msgstr "アカウント" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -703,7 +795,7 @@ msgstr "ニックネーム" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "パスワード" @@ -714,7 +806,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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 #, fuzzy @@ -723,164 +815,225 @@ msgid "Cancel" msgstr "中止" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "許可" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "アカウント情報へのアクセスを許可するか、または拒絶してください。" #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "確認コードがありません。" #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, fuzzy, php-format msgid "The request token %s has been revoked." msgstr "リクエストトークン%sは、拒否されて、取り消されました。" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "認証されていません。" -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "このメソッドには POST か DELETE が必要です。" -#: actions/apistatusesdestroy.php:135 +#. 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 "他のユーザのステータスを消すことはできません。" -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 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:541 msgid "Already repeated that notice." msgstr "すでにつぶやきを繰り返しています。" -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "ステータスを削除しました。" -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "そのIDでのステータスはありません。" #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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] "長すぎます。つぶやきは最大 %d 字までです。" #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "API メソッドが見つかりません。" -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, 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] "つぶやきは URL を含めて最大 %d 字までです。" -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "サポート外の形式です。" -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / %2$s からのお気に入り" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s は %2$s でお気に入りを更新しました / %2$s。" -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %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 #, php-format msgid "%1$s / Updates mentioning %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 "%2$s からアップデートに答える %1$s アップデート" -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s のパブリックタイムライン" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "皆からの %s アップデート!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "未実装のメソッド。" + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "%s への返信" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "%s の返信" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "%s とタグ付けされたつぶやき" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s に %1$s による更新があります!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "API メソッドが工事中です。" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "見つかりません。" +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +#, fuzzy +msgid "User not found." +msgstr "API メソッドが見つかりません。" #: actions/attachment.php:73 msgid "No such attachment." @@ -1526,15 +1679,6 @@ msgstr "そのニックネームは既に使用されています。他のもの msgid "Description is required." msgstr "概要が必要です。" -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "記述が長すぎます。(最長%d字)" - #. 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." @@ -1593,7 +1737,17 @@ msgstr "グループを編集するには管理者である必要があります msgid "Use this form to edit the group." msgstr "このフォームを使ってグループを編集します。" -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "記述が長すぎます。(最長%d字)" + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "別名が多すぎます! 最大 %d。" + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "不正な別名: \"%s\"" @@ -2799,7 +2953,6 @@ msgstr "結果なし。" #. TRANS: This is the title of the form for adding a new application. #: actions/newapplication.php:52 -#, fuzzy msgid "New application" msgstr "新しいアプリケーション" @@ -2838,11 +2991,6 @@ msgstr "新しいグループ" msgid "Use this form to create a new group." msgstr "このフォームを使って新しいグループを作成します。" -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "記述が長すぎます。(最長 %d 字)" - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "新しいメッセージ" @@ -8093,60 +8241,60 @@ msgid "Moderator" msgstr "管理" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "数秒前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "約 1 分前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "約 1 時間前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "約 1 日前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "約 1 ヵ月前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "約 1 年前" @@ -8190,18 +8338,3 @@ msgstr "ユーザIDの記述がありません。" #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "フルネームが長すぎます。(255字まで)" - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "場所が長すぎます。(255字まで)" - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "長すぎます。メッセージは最大 %d 字までです。" - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "自己紹介が長すぎます (最長%d文字)。" - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "%d字以内で自分自身と自分の興味について書いてください" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 9816f2d5d2..2d6b45a194 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,70 +9,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:19+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:17+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\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: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "შესვლა" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "საიტზე შესვლის პარამეტრები" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "რეგისტრაცია" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "აეკრძალოს ანონიმურ (არაავტორიზირებულ) მომხმარებლებს საიტის ნახვა?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "პირადი" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "რეგისტრაცია მხოლოდ მოწვევით." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "მხოლოდ მოწვევით" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "ახალი რეგისტრაციების გაუქმება." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "დახურული" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" 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 to store form data in the Paths admin panel. @@ -80,7 +81,7 @@ msgstr "შეინახე შესვლის პარამეტრე #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -88,29 +89,45 @@ msgctxt "BUTTON" msgid "Save" 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 msgid "No such page." msgstr "ასეთი გვერდი არ არსებობს." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -123,41 +140,42 @@ msgid "No such user." msgstr "ასეთი მომხმარებელი არ არსებობს." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s და მეგობრები, გვერდი %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr " %s და მეგობრები" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -167,7 +185,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -176,9 +194,9 @@ msgstr "" " გახდი მეტი მომხმარებლის მიმდევარი, [გაწევრიანდი ჯგუფში](%%action.groups%%) " "ან თავად დაპოსტე რამე." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -187,7 +205,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -196,65 +214,80 @@ msgstr "" "[გახსენი ანგარიში](%%%%action.register%%%%) და გამოეხმაურე %s-ს ან დაუტოვე " "შეტყობინება." -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "შენ და მეგობრები" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr " %1$s და მეგობრების განახლებები %2$s-ზე!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "ეს მეთოდი მოითხოვს POST-ს." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -263,16 +296,19 @@ msgstr "" "sms, im, none." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -287,8 +323,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -304,10 +340,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -315,8 +353,9 @@ msgid "Unable to save your design settings." msgstr "სამწუხაროდ თქვენი დიზაინის პარამეტრების შენახვა ვერ მოხერხდა." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "დიზაინის განახლება ვერ მოხერხდა." @@ -335,31 +374,31 @@ msgstr "მომხმარებლის დაბლოკვა ვერ msgid "Unblock user failed." msgstr "ვერ მოხერხდა მომხმარებელზე ბლოკის მოხსნა." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "პირდაპირი შეტყობინებები %s-სგან" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "%s-ს მიერ გამოგზავნილი ყველა პირდაპირი შეტყობინება" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "%s-სთვის გაგზავნილი პირდაპირი შეტყობინებები" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "%s-სთვის გაგზავნილი ყველა პირდაპირი შეტყობინება" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "შეტყობინების ტექსტი არ არის!" @@ -392,7 +431,9 @@ msgid "" msgstr "ნუ გაუგზავნი შეტყობინებას საკუთარ თავს; უბრალოდ ჩუმად ჩაუჩურჩულე." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "სტატუსი ასეთი ID-თ ვერ მოიძებნა." @@ -408,45 +449,55 @@ msgstr "ეს სტატუსი უკვე ფავორიტია." msgid "Could not create favorite." msgstr "ფავორიტის შექმნა ვერ მოხერხდა." -#: actions/apifavoritedestroy.php:124 +#. 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 "ეს სტატუსი არა არის ფავორიტი." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "ფავორიტის წაშლა ვერ მოხერხდა." -#: actions/apifriendshipscreate.php:110 +#. 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 "ამ მომხმარებლის მიმდევარი ვერ გახდებით, რადგან პროფილი ვერ მოიძებნა" -#: actions/apifriendshipscreate.php:119 +#. 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 "თქვენ უკვე ხართ %s-ის მიმდევარი." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "მომხმარებლის ჩამოშორება ვერ მოხერხდა. მომხმარებელი ვერ მოიძებნა." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "საკუთარი თავის ჩამოშორება შეუძლებელია." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "საჭიროა 2 სწორი სახელის ან ID-ს მოწოდება." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "ავტორი მომხმარებლის განსაზღვრა ვერ მოხერხდა." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "სასურველი მომხმარებელი ვერ მოიძებნა." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -454,7 +505,7 @@ msgstr "მეტსახელში დასაშვებია მხო #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -462,7 +513,7 @@ msgstr "მეტსახელი უკვე გამოყენებუ #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -471,7 +522,7 @@ msgstr "მეტსახელი არასწორია." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -480,133 +531,164 @@ msgstr "სასტარტო გვერდი არასწორი URL #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "სრული სახელი ძალიან გრძელია (არაუმეტეს 255 სიმბოლო)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "აღწერა ძალიან გრძელია (არაუმეტეს %d სიმბოლო)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "აღწერა ძალიან გრძელია (არაუმეტეს %d სიმბოლო)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "ადგილმდებარეობა ძალიან გრძელია (არაუმეტეს 255 სიმბოლო)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 #, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "" -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "" -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "" -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: 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: 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 "თქვენ დაბლოკილი ხართ ამ ჯგუფიდან ადმინისტრატორის მიერ." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "ვერ მოხერხდა მომხმარებელ %1$s-სთან ერთად ჯგუფ %2$s-ში გაერთიანება." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "თვენ არ ხართ ამ ჯგუფის წევრი." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "მომხმარებლ %1$s-ის გარიცხვა ჯგუფიდან %2$s ვერ მოხერხდა." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "%s-ს ჯგუფები" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "%1$s-ს ის ჯგუფები რომლებშიც გაერთიანებულია %2$s." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s ჯგუფები" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "ჯგუფები %s-ზე" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "ატვირთვა ვერ მოხერხდა." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: 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:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "oauth_token პარამეტრი არ არის მოწოდებული." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "არასწორი როლი." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy 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:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -631,7 +713,7 @@ msgid "Invalid nickname / password!" msgstr "არასწორი მეტსახელი / პაროლი!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "ბაზამ დაუშვა შეცდომა OAuth აპლიკაციის მომხმარებლის ჩასმისას." @@ -642,7 +724,7 @@ msgstr "ბაზამ დაუშვა შეცდომა OAuth აპლ #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -652,19 +734,29 @@ 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:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "აპლიკაციას უნდა რომ დაუკავშირდეს თქვენს ანგარიშს" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: 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, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -673,7 +765,7 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -681,7 +773,7 @@ msgstr "ანგარიში" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -691,7 +783,7 @@ msgstr "მეტსახელი" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "პაროლი" @@ -702,7 +794,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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -710,164 +802,225 @@ msgid "Cancel" msgstr "გაუქმება" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "დაშვება" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "დაუშვი ან აკრძალე წვდომა თქვენი ანგარიშის ინფორმაციაზე." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "IM დასტური გაუქმდა." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "თქვენ არ ხართ ავტორიზირებული." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "ეს მეთოდი მოითხოვს POST-ს ან DELETE-ს." -#: actions/apistatusesdestroy.php:135 +#. 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 "სხვა მომხმარებლის სტატუსის წაშლა არ შეგიძლიათ." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 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:541 msgid "Already repeated that notice." msgstr "ეს შეტყობინება უკვე გამეორებულია." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "სტატუსი წაშლილია." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "ასეთი ID-ს სტატუსი ვერ მოიძებნა." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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] "შეტყობინების დასაძვები ზომაა %d სიმბოლო." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "API მეთოდი ვერ მოიძებნა." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, 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] "შეყობინების დასაშვები ზომაა %d სიმბოლო მიმაგრებული URL-ის ჩათვლით." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "ფორმატი არ არის მხარდაჭერილი." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$s / %2$s." -msgstr "" +#. 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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." +msgstr "განახლებები არჩეული %1$s-ს მიერ %2$s-ზე!" -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "" +#. 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 "" -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s საჯარო ნაკადი" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s განახლებები ყველასგან!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "მეთოდი განუხორციელებელია." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "შეტყობინებები მონიშნული როგორც %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "განახლებები მონიშნული როგორც %1$s %2$s-ზე!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "API მეთოდი დამუშავების პროცესშია." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "ვერ მოიძებნა." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +#, fuzzy +msgid "User not found." +msgstr "API მეთოდი ვერ მოიძებნა." #: actions/attachment.php:73 msgid "No such attachment." @@ -1504,15 +1657,6 @@ msgstr "სახელი უკვე გამოყენებულია. msgid "Description is required." msgstr "აღწერა სავალდებულოა." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "აღწერა ძალიან გრძელია (არაუმეტეს %d სიმბოლო)." - #. 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." @@ -1571,7 +1715,17 @@ msgstr "ჯგუფის რედაქტირებისათვის msgid "Use this form to edit the group." msgstr "ჯგუფის რედაქტირებისათვის გამოიყენეთ ეს ფორმა." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "აღწერა ძალიან გრძელია (არაუმეტეს %d სიმბოლო)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "" @@ -2804,11 +2958,6 @@ msgstr "ახალი ჯგუფი" msgid "Use this form to create a new group." msgstr "ახალი ჯგუფის შესაქმნელად გამოიყენეთ ეს ფორმა." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "აღწერა ძალიან გრძელია (არაუმეტეს %d სიმბოლო)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "ახალი შეტყობინება" @@ -8008,60 +8157,60 @@ msgid "Moderator" msgstr "მოდერატორი" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "რამდენიმე წამის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "დაახლოებით 1 წუთის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "დაახლოებით 1 საათის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "დაახლოებით 1 დღის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "დაახლოებით 1 თვის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "დაახლოებით 1 წლის წინ" @@ -8108,18 +8257,3 @@ msgstr "მომხმარებლის ID მითითებული #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "სრული სახელი ძალიან გრძელია (არაუმეტეს 255 სიმბოლო)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "ადგილმდებარეობა ძალიან გრძელია (არაუმეტეს 255 სიმბოლო)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "ეს ძალიან გრძელია. შეტყობინებაში დასაშვებია %d სიმბოლო." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "ბიოგრაფია ძალიან გრძელია (არაუმეტეს %d სიმბოლო)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "აღწერეთ საკუთარი თავი და თქვენი ინტერესები %d სიმბოლოთი" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 4ade72775d..1c1b1a444e 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,70 +11,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:20+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:19+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\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: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "접근" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "사이트 접근 설정" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "등록" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "로그인하지 않은 익명 이용자의 사이트 보기 금지" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "비공개" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "초대받은 경우만 등록허용" #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "초대 전용" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "신규회원등록 기능차단" #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "폐쇄" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" 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 to store form data in the Paths admin panel. @@ -82,7 +83,7 @@ msgstr "접근 설정을 저장" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -90,29 +91,45 @@ msgctxt "BUTTON" msgid "Save" 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 msgid "No such page." msgstr "해당하는 페이지 없음" +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -125,41 +142,42 @@ msgid "No such user." msgstr "해당하는 이용자 없음" #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%s 및 친구들, %d 페이지" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s 및 친구들" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s의 친구들에 대한 피드 (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s의 친구들에 대한 피드 (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "%s의 친구들에 대한 피드 (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -167,7 +185,7 @@ msgstr "%s 및 친구들의 타임라인이지만, 아직 아무도 글을 작 #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -176,9 +194,9 @@ msgstr "" "더 많은 사람들을 구독해 보거나, [그룹에 참가](%%action.groups%%) 또는 직접 뭔" "가 글을 써보세요." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -187,88 +205,106 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to them." msgstr "" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "당신 및 친구들" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s에 있는 %1$s 및 친구들의 업데이트!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "이 메서드는 POST를 요구합니다." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -283,8 +319,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -300,10 +336,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -311,8 +349,9 @@ msgid "Unable to save your design settings." msgstr "디자인 설정을 저장할 수 없습니다." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "디자인을 업데이트 할 수 없습니다." @@ -331,31 +370,31 @@ msgstr "이용자 차단에 실패했습니다." msgid "Unblock user failed." msgstr "이용자 차단 해제에 실패했습니다." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "%s으로부터 직접 메시지" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "%s에서 보낸 모든 직접 메시지" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "%s에게 직접 메시지" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "%s에게 모든 직접 메시지" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "메시지 내용이 없습니다!" @@ -389,7 +428,9 @@ msgstr "" "자신에게 메시지를 보내지 마세요. 대신 조용하게 스스로에게 그것을 말하세요;;" #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "그 ID로 발견된 상태가 없습니다." @@ -405,46 +446,56 @@ msgstr "이 소식은 이미 관심소식으로 등록되어 있습니다." msgid "Could not create favorite." msgstr "관심소식을 생성할 수 없습니다." -#: actions/apifavoritedestroy.php:124 +#. 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 "이 소식은 관심소식이 아닙니다." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "관심소식을 삭제할 수 없습니다." -#: actions/apifriendshipscreate.php:110 +#. 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 "언팔로우할 수 없습니다: 이용자 없음." -#: actions/apifriendshipscreate.php:119 +#. 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 "팔로우할 수 없습니다 : %s 님은 이미 리스트에 있습니다." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "언팔로우할 수 없습니다: 이용자 없음." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "자기 자신을 언팔로우할 수 없습니다." -#: actions/apifriendshipsexists.php:91 +#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists. +#: actions/apifriendshipsexists.php:88 #, fuzzy msgid "Two valid IDs or screen_names must be supplied." msgstr "두 개의 사용자 ID나 대화명을 입력해야 합니다." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "소스 이용자를 확인할 수 없습니다." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "타겟 이용자를 찾을 수 없습니다." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -454,7 +505,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -462,7 +513,7 @@ msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십 #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -471,7 +522,7 @@ msgstr "유효한 별명이 아닙니다" #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -480,134 +531,165 @@ msgstr "홈페이지 주소형식이 올바르지 않습니다." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "실명이 너무 깁니다. (최대 255글자)" -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "설명이 너무 깁니다. (최대 %d 글자)" +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "설명이 너무 깁니다. (최대 %d 글자)" +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "위치가 너무 깁니다. (최대 255글자)" -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "별명이 너무 많습니다! 최대 %d개." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "별명이 너무 많습니다! 최대 %d개." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, fuzzy, php-format msgid "Invalid alias: \"%s\"." msgstr "사용할 수 없는 별명 : \"%s\"" -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "별명 \"%s\" 이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: 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: 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 "이미 차단된 이용자입니다." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "이용자 %1$s 의 그룹 %2$s 가입에 실패했습니다." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "이용자 %1$s 의 그룹 %2$s 가입에 실패했습니다." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "%s의 그룹" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "%1$s 사이트의 그룹에 %2$s 사용자가 멤버입니다." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s 그룹" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "%s 사이트의 그룹" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "실행 실패" #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "허용되지 않는 요청입니다." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: 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:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "토큰이 잘못되었습니다." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy 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:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -632,7 +714,7 @@ msgid "Invalid nickname / password!" msgstr "사용자 이름이나 비밀 번호가 틀렸습니다." #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "OAuth 응용 프로그램 사용자 추가 중 데이터베이스 오류" @@ -643,7 +725,7 @@ msgstr "OAuth 응용 프로그램 사용자 추가 중 데이터베이스 오류 #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -653,19 +735,32 @@ 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:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "응용 프로그램이 계정에 연결하려고 할 것입니다." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: 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, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"%2$s의 응용 프로그램 %1$s이 %4$s 계정 정보" +"에 대해 %3$s 할 수 있습니다 .믿을 수 있는 써드파티에게만 %4" +"$s 계정의 접근을 허용해야 합니다." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -677,7 +772,7 @@ msgstr "" "$s 계정의 접근을 허용해야 합니다." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -685,7 +780,7 @@ msgstr "계정" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -695,7 +790,7 @@ msgstr "별명" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "비밀 번호" @@ -706,7 +801,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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -714,164 +809,224 @@ msgid "Cancel" msgstr "취소" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "허용" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "계정 정보에 대한 접근을 허용 또는 거부합니다." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "확인 코드가 없습니다." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "당신은 이 프로필에 구독되지 않고있습니다." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "이 메서드는 POST 또는 DELETE를 요구합니다." -#: actions/apistatusesdestroy.php:135 +#. 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 "당신은 다른 사용자의 상태를 삭제하지 않아도 된다." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 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:541 msgid "Already repeated that notice." msgstr "이미 재전송된 소식입니다." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "삭제된 소식입니다." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "발견된 ID의 상태가 없습니다." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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] "너무 깁니다. 통지의 최대 길이는 %d 글자 입니다." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "API 메서드 발견 안 됨." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, 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] "소식의 최대 길이는 첨부 URL을 포함하여 %d 글자입니다." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "지원하지 않는 형식입니다." -#: actions/apitimelinefavorites.php:110 +#. 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 msgid "%1$s / Favorites from %2$s" msgstr "%s / %s의 좋아하는 글" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s님이 %2$s/%3$s의 업데이트에 답변했습니다." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %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 #, php-format msgid "%1$s / Updates mentioning %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 "%1$s님이 %2$s/%3$s의 업데이트에 답변했습니다." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s 공개 타임라인" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "모두로부터의 업데이트 %s개!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "명령이 아직 실행되지 않았습니다." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, fuzzy, php-format msgid "Repeated to %s" msgstr "%s에 답신" -#: actions/apitimelineretweetsofme.php:114 +#. 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 msgid "Repeats of %s" msgstr "%s에 답신" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "%s 태그된 통지" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "API 메서드를 구성중 입니다." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "찾을 수가 없습니다." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "API 메서드 발견 안 됨." #: actions/attachment.php:73 msgid "No such attachment." @@ -1507,15 +1662,6 @@ msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십 msgid "Description is required." msgstr "기관 이름이 필요합니다." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "설명이 너무 깁니다. (최대 %d 글자)" - #. 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." @@ -1574,7 +1720,17 @@ msgstr "관리자만 그룹을 편집할 수 있습니다." msgid "Use this form to edit the group." msgstr "다음 양식을 이용해 그룹을 편집하십시오." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "설명이 너무 깁니다. (최대 %d 글자)" + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "별명이 너무 많습니다! 최대 %d개." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "사용할 수 없는 별명 : \"%s\"" @@ -2787,11 +2943,6 @@ msgstr "새로운 그룹" msgid "Use this form to create a new group." msgstr "새 그룹을 만들기 위해 이 양식을 사용하세요." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "설명이 너무 길어요. (최대 %d글자)" - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "새로운 메시지입니다." @@ -7894,60 +8045,60 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "몇 초 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "1분 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "1시간 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "하루 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "1달 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "1년 전" @@ -7991,18 +8142,3 @@ msgstr "프로필을 지정하지 않았습니다." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "실명이 너무 깁니다. (최대 255글자)" - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "위치가 너무 깁니다. (최대 255글자)" - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "너무 깁니다. 최대 메시지 길이는 %d자 까지입니다." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "설명이 너무 깁니다. (최대 %d 글자)" - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "%d자 이내에서 자기 소개 및 자기 관심사" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index ef8c1e3cac..fde84118d4 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,72 +10,73 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Пристап" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Нагодувања за пристап на мрежното место" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Регистрација" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" "Да им забранам на анонимните (ненајавени) корисници да го гледаат мрежното " "место?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Приватно" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Регистрирање само со покана." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Само со покана" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Оневозможи нови регистрации." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Затворен" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" 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 to store form data in the Paths admin panel. @@ -83,7 +84,7 @@ msgstr "Зачувај нагодувања на пристап" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -91,29 +92,45 @@ msgctxt "BUTTON" msgid "Save" 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 msgid "No such page." msgstr "Нема таква страница." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -126,41 +143,42 @@ msgid "No such user." msgstr "Нема таков корисник." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s и пријателите, стр. %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s и пријатели" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Канал со пријатели на %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Канал со пријатели на %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Канал за пријатели на %S (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -169,7 +187,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -178,9 +196,9 @@ msgstr "" "Пробајте да се претплатите на повеќе луѓе, [зачленете се во група](%%action." "groups%%) или објавете нешто самите." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -191,7 +209,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -200,65 +218,80 @@ msgstr "" "А зошто не се [регистрирате](%%%%action.register%%%%), и потоа да го " "подбуцнете корисникот %s или да му испратите забелешка." -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Вие и пријателите" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Подновувања од %1$s и пријатели на %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Овој метод бара POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -267,16 +300,19 @@ msgstr "" "sms, im, none." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -291,8 +327,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -311,10 +347,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -322,8 +360,9 @@ msgid "Unable to save your design settings." msgstr "Не можам да ги зачувам Вашите нагодувања за изглед." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Не може да се поднови Вашиот изглед." @@ -342,31 +381,31 @@ msgstr "Блокирањето на корисникот не успеа." msgid "Unblock user failed." msgstr "Не успеа одблокирањето на корисникот." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Директни пораки од %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Сите директни пораки испратени од %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Директни пораки до %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Сите директни пораки испратени до %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Нема текст за пораката!" @@ -402,7 +441,9 @@ msgstr "" "себе." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Нема пронајдено статус со таков ID." @@ -418,48 +459,58 @@ msgstr "Веќе сте го бендисале овој статус." msgid "Could not create favorite." msgstr "Не можам да создадам бендисана забелешка." -#: actions/apifavoritedestroy.php:124 +#. 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 "Тој статус не Ви е бендисан." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Не можам да ја избришам бендисаната забелешка." -#: actions/apifriendshipscreate.php:110 +#. 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 "Не можам да го следам корисникот: профилот не е пронајден." -#: actions/apifriendshipscreate.php:119 +#. 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 "Не можам да го следам корисникот: %s веќе е на Вашиот список." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "" "Не можам да престанам да го следам корисникот: Корисникот не е пронајден." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Не можете да престанете да се следите самите себеси." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "" "Мора да се наведат две кориснички назнаки (ID) или screen_names (имиња за " "приказ)." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Не можев да го утврдам целниот корисник." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Не можев да го пронајдам целниот корисник." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -467,7 +518,7 @@ msgstr "Прекарот мора да има само мали букви и б #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -475,7 +526,7 @@ msgstr "Тој прекар е во употреба. Одберете друг. #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -484,7 +535,7 @@ msgstr "Неправилен прекар." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -493,132 +544,162 @@ msgstr "Главната страница не е важечка URL-адрес #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 -#, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Полното име е предолго (највеќе 255 знаци)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 #, php-format -msgid "Description is too long (max %d chars)." -msgstr "Описот е предолг (дозволено е највеќе %d знаци)." +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Описот е предолг (дозволено е највеќе %d знак." +msgstr[1] "Описот е предолг (дозволено е највеќе %d знаци)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 -#, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Местоположбата е предолга (највеќе 255 знаци)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 #, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Премногу алијаси! Дозволено е највеќе %d." +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Премногу алијаси! Дозволено е највеќе %d." +msgstr[1] "Премногу алијаси! Дозволено е највеќе %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Неважечки алијас: „%s“." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Алијасот „%s“ е зафатен. Одберете друг." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Алијасот не може да биде ист како прекарот." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: 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: 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 "Блокирани сте од таа група од администраторот." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Не можам да го зачленам корисникот %1$s во групата 2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Не членувате во оваа група." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Не можев да го отстранам корисникот %1$s од групата %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "%s групи" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "%1$s групи кадешто членува %2$s." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s групи" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "групи на %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Подигањето не успеа." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: 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:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "Нема наведено oauth_token параметар." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: 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:122 -#, fuzzy +#: actions/apioauthauthorize.php:121 msgid "Request token already authorized." -msgstr "Не сте авторизирани." +msgstr "Жетонот за барање е веќе овластен." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -643,12 +724,9 @@ msgid "Invalid nickname / password!" msgstr "Погрешен прекар / лозинка!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 -#, fuzzy +#: actions/apioauthauthorize.php:217 msgid "Database error inserting oauth_token_association." -msgstr "" -"Грешка во базата на податоци при вметнувањето на корисникот на OAuth-" -"програмот." +msgstr "Грешка во базата при вметнувањето на auth_token_association." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Client error displayed submitting invalid form data for edit application. @@ -656,7 +734,7 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -666,19 +744,32 @@ 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:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Има програм кој сака да се поврзе со Вашата сметка" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: 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, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +msgstr "" +"Еден програм би сакал да може да ги %3$s податоците за " +"Вашата %4$s сметка. Треба да дозволувате пристап до Вашата %4$s сметка само " +"на трети лица на кои им верувате." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -690,14 +781,14 @@ msgstr "" "пристап до Вашата %4$s сметка само на трети страни на кои им верувате." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 msgctxt "LEGEND" msgid "Account" msgstr "Сметка" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -707,7 +798,7 @@ msgstr "Прекар" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Лозинка" @@ -718,7 +809,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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -726,38 +817,52 @@ msgid "Cancel" msgstr "Откажи" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 msgctxt "BUTTON" msgid "Allow" msgstr "Дозволи" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: 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:559 +#: 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:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "Жетонот за барање %s е повлечен." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, php-format -msgid "You have successfully authorized %s." -msgstr "Успешно го/ја овластивте %s." +#. 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: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, php-format +msgid "You have successfully authorized %s" +msgstr "Успешно дадовте овластување на %s." + +#. 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 " @@ -766,45 +871,54 @@ msgstr "" "Вратете се на %s и внесете го следниов безбедносен код за да ја завршите " "постапката." -#: actions/apistatusesdestroy.php:112 +#. 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 "Методот бара POST или DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Не можете да избришете статус на друг корисник." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 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:541 msgid "Already repeated that notice." msgstr "Забелешката е веќе повторена." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Статусот е избришан." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Нема пронајдено статус со тој ID." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "Клиентот мора да укаже вредност за параметарот „статус“" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, 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." @@ -812,11 +926,13 @@ msgstr[0] "Ова е предолго. Дозволен е највеќе %d з msgstr[1] "Ова е предолго. Дозволени се највеќе %d знаци." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 msgid "Parent notice not found." msgstr "Матичната забелешка не е пронајдена." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -827,67 +943,102 @@ msgstr[1] "" "Максималната големина на забелешката е %d знаци, вклучувајќи ја URL-адресата " "на прилогот." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Неподдржан формат." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Бендисани од %2$s" -#: actions/apitimelinefavorites.php:119 +#. 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 / %2$s." -msgstr "Подновувања на %1$s бендисани од %2$s / %2$s." +msgid "%1$s updates favorited by %2$s / %3$s." +msgstr "Подновувања на %1$s бендисани од %2$s / %3$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, php-format +msgid "Could not generate feed for group - %s" +msgstr "Не можев да создадам канал за групата - %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. +#: actions/apitimelinementions.php:115 #, php-format msgid "%1$s / Updates mentioning %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 "%1$s подновувања коишто се одговор на подновувањата од %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Јавна историја на %s" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s подновуввања од сите!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +msgid "Unimplemented." +msgstr "Неспроведено." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Повторено за %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Повторувања на %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Забелешки означени со %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Подновувањата се означени со %1$s на %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "API-методот е во изработка." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Не е пронајдено." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "Корисникот не е пронајден." #: actions/attachment.php:73 msgid "No such attachment." @@ -1523,16 +1674,6 @@ msgstr "Тоа име е во употреба. Одберете друго." msgid "Description is required." msgstr "Треба опис." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Описот е предолг (дозволено е највеќе %d знак." -msgstr[1] "Описот е предолг (дозволено е највеќе %d знаци)." - #. 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." @@ -1590,7 +1731,17 @@ msgstr "Мора да сте администратор за да можете msgid "Use this form to edit the group." msgstr "ОБразецов служи за уредување на групата." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Описот е предолг (дозволено е највеќе %d знаци)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Премногу алијаси! Дозволено е највеќе %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Неважечки алијас: „%s“" @@ -1941,7 +2092,7 @@ msgstr "Тој корисник Ве има блокирано од претпл #: actions/finishremotesubscribe.php:110 msgid "You are not authorized." -msgstr "Не сте авторизирани." +msgstr "Не сте овластени." #: actions/finishremotesubscribe.php:113 msgid "Could not convert request token to access token." @@ -2795,7 +2946,6 @@ msgstr "Нема тековен статус." #. TRANS: This is the title of the form for adding a new application. #: actions/newapplication.php:52 -#, fuzzy msgid "New application" msgstr "Нов програм" @@ -2809,7 +2959,6 @@ msgid "Use this form to register a new application." msgstr "Овој образец служи за регистрирање на нов програм." #: actions/newapplication.php:169 -#, fuzzy msgid "Name is too long (maximum 255 chars)." msgstr "Името е предолго (највеќе 255 знаци)." @@ -2818,7 +2967,6 @@ msgid "Source URL is required." msgstr "Треба изворна URL-адреса." #: actions/newapplication.php:199 -#, fuzzy msgid "Organization is too long (maximum 255 chars)." msgstr "Организацијата е предолга (дозволени се највеќе 255 знаци)." @@ -2834,11 +2982,6 @@ msgstr "Нова група" msgid "Use this form to create a new group." msgstr "Овој образец служи за создавање нова група." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "описот е предолг (највеќе %d знаци)" - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Нова порака" @@ -3634,11 +3777,11 @@ msgstr "" #. 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:230 -#, fuzzy, php-format +#, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." -msgstr[0] "Биографијата е преголема (највеќе до %d знак)." -msgstr[1] "Биографијата е преголема (највеќе до %d знаци)." +msgstr[0] "Биографијата е предолга (највеќе до %d знак)." +msgstr[1] "Биографијата е предолга (највеќе до %d знаци)." #. TRANS: Validation error in form for profile settings. #: actions/profilesettings.php:273 actions/siteadminpanel.php:151 @@ -3647,7 +3790,6 @@ msgstr "Не е избрана часовна зона." #. TRANS: Validation error in form for profile settings. #: actions/profilesettings.php:281 -#, fuzzy msgid "Language is too long (maximum 50 characters)." msgstr "Јазикот е предолг (највеќе до 50 знаци)." @@ -5803,7 +5945,7 @@ msgstr "Не е зададен корисник за еднокорисничк #. TRANS: Server exception. #: classes/User.php:906 msgid "Single-user mode code called when not enabled." -msgstr "" +msgstr "Повикан е еднокориснички режим, но не е овозможен." #. TRANS: Server exception thrown when creating a group failed. #: classes/User_group.php:495 @@ -6299,13 +6441,12 @@ msgstr "Не можев да создадам анонимен OAuth-прогр #: lib/apioauthstore.php:151 msgid "" "Could not find a profile and application associated with the request token." -msgstr "" +msgstr "Не можев да пронајдам профил и програм поврзан со жетонот за барање." #. TRANS: Exception thrown when no access token can be issued. #: lib/apioauthstore.php:186 -#, fuzzy msgid "Could not issue access token." -msgstr "Не можев да ја испратам пораката." +msgstr "Не можев да го издадам жетонот за пристап." #. TRANS: Server error displayed when a database error occurs. #: lib/apioauthstore.php:243 @@ -7906,9 +8047,8 @@ msgstr "Одземи му ја улогата „%s“ на корисников #. TRANS: Client error on action trying to visit a non-existing page. #: lib/router.php:847 -#, fuzzy msgid "Page not found." -msgstr "API методот не е пронајден." +msgstr "Страницата не е пронајдена." #: lib/sandboxform.php:67 msgid "Sandbox" @@ -8141,17 +8281,17 @@ msgid "Moderator" msgstr "Модератор" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "пред неколку секунди" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "пред една минута" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8159,12 +8299,12 @@ msgstr[0] "пред околу една минута" msgstr[1] "пред околу %d минути" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "пред еден час" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8172,12 +8312,12 @@ msgstr[0] "пред околу еден час" msgstr[1] "пред околу %d часа" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "пред еден ден" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8185,12 +8325,12 @@ msgstr[0] "пред околу еден ден" msgstr[1] "пред околу %d дена" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "пред еден месец" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8198,7 +8338,7 @@ msgstr[0] "пред околу еден месец" msgstr[1] "пред околу %d месеци" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "пред една година" @@ -8219,16 +8359,16 @@ msgstr "" #: lib/xmppmanager.php:285 #, php-format msgid "Unknown user. Go to %s to add your address to your account" -msgstr "" +msgstr "Непознат корисник. Одете на %s за да внесете адреса во Вашата сметка." #. 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:404 -#, fuzzy, php-format +#, 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] "" -"Пораката е предолга - дозволени се највеќе %1$d знаци, а вие испративте %2$d." +"Пораката е предолга. Дозволен е највеќе %1$d знак, а вие испративте %2$d." msgstr[1] "" "Пораката е предолга - дозволени се највеќе %1$d знаци, а вие испративте %2$d." @@ -8245,18 +8385,3 @@ msgstr "Нема назначено корисник. Ќе го употреба #, php-format msgid "%d entries in backup." msgstr "%d резервни ставки." - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Целото име е предолго (највеќе 255 знаци)" - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Местоположбата е предолга (дозволени се највеќе 255 знаци)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Ова е предолго. Максималната должина изнесува %d знаци." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Биографијата е преголема (највеќе до %d знаци)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Опишете се себеси и своите интереси во %d знаци." diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index d4fe297405..267d4bdee0 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -10,70 +10,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:25+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.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Tilgang" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Innstillinger for nettstedstilgang" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Registrering" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Forhindre anonyme brukere (ikke innlogget) å se nettsted?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Privat" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Gjør at registrering kun kan skje gjennom invitasjon." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Kun invitasjon" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Deaktiver nye registreringer." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Lukket" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" msgstr "Lagre tilgangsinnstillinger" +#. 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 to store form data in the Paths admin panel. @@ -81,7 +82,7 @@ msgstr "Lagre tilgangsinnstillinger" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -89,29 +90,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Lagre" +#. 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 msgid "No such page." msgstr "Ingen slik side." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -124,41 +141,42 @@ msgid "No such user." msgstr "Ingen slik bruker." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s og venner, side %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s og venner" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Mating for venner av %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Mating for venner av %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Mating for venner av %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -166,7 +184,7 @@ msgstr "Dette er tidslinjen for %s og venner, men ingen har postet noe enda." #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -175,9 +193,9 @@ msgstr "" "Prøv å abbonere på flere personer, [bli med i en gruppe](%%action.groups%%) " "eller post noe selv." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -188,7 +206,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -197,83 +215,101 @@ msgstr "" "Hvorfor ikke [registrere en konto](%%action.register%%) og vær den første " "til å poste en!" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Du og venner" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Oppdateringer fra %1$s og venner på %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 #, fuzzy msgid "API method not found." msgstr "API-metode ikke funnet!" #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Denne metoden krever en POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "Du må angi en verdi for parameteren 'device' med en av: sms, im, none." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 #, fuzzy msgid "Could not update user." msgstr "Klarte ikke å oppdatere bruker." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -289,8 +325,8 @@ msgstr "Klarte 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -309,10 +345,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -320,8 +358,9 @@ msgid "Unable to save your design settings." msgstr "Kunne ikke lagre dine innstillinger for utseende." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. 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 "Klarte ikke å oppdatere bruker." @@ -341,31 +380,31 @@ msgstr "Blokkering av bruker mislyktes." msgid "Unblock user failed." msgstr "Oppheving av blokkering av bruker mislyktes." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Direktemeldinger fra %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Alle direktemeldinger sendt fra %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Direktemeldinger til %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Alle direktemeldinger sendt til %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Ingen meldingstekst!" @@ -400,7 +439,9 @@ msgstr "" "Ikke send en melding til degselv; bare hvisk det stille til degselv istedet." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Fant ingen status med den ID-en." @@ -416,45 +457,55 @@ msgstr "Denne statusen er allerede en favoritt." msgid "Could not create favorite." msgstr "Kunne ikke opprette favoritt." -#: actions/apifavoritedestroy.php:124 +#. 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 "Den statusen er ikke en favoritt." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Kunne ikke slette favoritt." -#: actions/apifriendshipscreate.php:110 +#. 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 "Kunne ikke følge brukeren: fant ikke profilen." -#: actions/apifriendshipscreate.php:119 +#. 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 "Kunne ikke følge brukeren: %s er allerede i listen din." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Kunne ikke slutte å følge brukeren: Fant ikke brukeren." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Du kan ikke slutte å følge deg selv." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "To gyldige ID-er eller screen_names må oppgis." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Kunne ikke bestemme kildebruker." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Kunne ikke finne målbruker." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -462,7 +513,7 @@ msgstr "Kallenavn kan kun ha små bokstaver og tall og ingen mellomrom." #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -470,7 +521,7 @@ msgstr "Det nicket er allerede i bruk. Prøv et annet." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -479,7 +530,7 @@ msgstr "Ugyldig nick." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -488,134 +539,167 @@ msgstr "Hjemmesiden er ikke en gyldig URL." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Beklager, navnet er for langt (max 250 tegn)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Beskrivelsen er for lang (maks %d tegn)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Beskrivelsen er for lang (maks %d tegn)." +msgstr[1] "Beskrivelsen er for lang (maks %d tegn)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Plassering er for lang (maks 255 tegn)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "For mange alias! Maksimum %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "For mange alias! Maksimum %d." +msgstr[1] "For mange alias! Maksimum %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Ugyldig alias: «%s»." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Aliaset «%s» er allerede i bruk. Prøv et annet." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Alias kan ikke være det samme som kallenavn." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Gruppe ikke funnet." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Du er allerede medlem av den gruppen." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "Du har blitt blokkert fra den gruppen av administratoren." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Kunne ikke legge bruker %1$s til gruppe %2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Du er ikke et medlem av denne gruppen." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Kunne ikke fjerne bruker %1$s fra gruppe %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "%s sine grupper" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "%1$s grupper %2$s er et medlem av." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s grupper" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "grupper på %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Opplasting feilet." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "Ugyldig symbol." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "Ingen verdi for oauth_token er oppgitt." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Ugyldig symbol." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "Du er ikke autorisert." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -640,7 +724,7 @@ msgid "Invalid nickname / password!" msgstr "Ugyldig kallenavn / passord!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "Databasefeil ved innsetting av bruker i programmet OAuth." @@ -651,7 +735,7 @@ msgstr "Databasefeil ved innsetting av bruker i programmet OAuth." #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -661,19 +745,32 @@ msgid "Unexpected form submission." msgstr "Uventet skjemainnsending." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Et program ønsker å koble til kontoen din" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Tillat eller nekt tilgang" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"Programmet %1$s av %2$s ønsker å kunne " +"%3$s dine %4$s-kontodata. Du bør bare gi tilgang til din %4" +"$s-konto til tredjeparter du stoler på." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -685,7 +782,7 @@ msgstr "" "$s-konto til tredjeparter du stoler på." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -693,7 +790,7 @@ msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -703,7 +800,7 @@ msgstr "Nick" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Passord" @@ -714,7 +811,7 @@ msgstr "Passord" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -722,86 +819,108 @@ msgid "Cancel" msgstr "Avbryt" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Tillat" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "Tillat eller nekt tilgang til din kontoinformasjon." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "Direktemeldingsbekreftelse avbrutt." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Du er ikke autorisert." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Du er ikke autorisert." + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Denne metoden krever en POST eller DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Du kan ikke slette statusen til en annen bruker." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Ingen slik notis." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Kan ikke gjenta din egen notis." +#. 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:541 msgid "Already repeated that notice." msgstr "Allerede gjentatt den notisen." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Status slettet." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Ingen status med den ID-en funnet." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -809,79 +928,118 @@ msgstr[0] "Det er for langt. Maks notisstørrelse er %d tegn." msgstr[1] "Det er for langt. Maks notisstørrelse er %d tegn." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "API-metode ikke funnet!" -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, 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] "Maks notisstørrelse er %d tegn, inklusive vedleggs-URL." msgstr[1] "Maks notisstørrelse er %d tegn, inklusive vedleggs-URL." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Formatet støttes ikke." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Favoritter fra %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s oppdateringer markert som favoritt av %2$s / %2$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Kunne ikke oppdatere gruppe." + +#. 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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Oppdateringer som nevner %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 "%1$s oppdateringer som svarer på oppdateringer fra %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s offentlig tidslinje" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s oppdateringer fra alle sammen!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Ikke-implementert metode." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Gjentatt til %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Repetisjoner av %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Notiser merket med %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Oppdateringer merket med %1$s på %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "API-metode under utvikling." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Ikke funnet." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +#, fuzzy +msgid "User not found." +msgstr "API-metode ikke funnet!" #: actions/attachment.php:73 msgid "No such attachment." @@ -1522,16 +1680,6 @@ msgstr "Navn allerede i bruk. Prøv et annet." msgid "Description is required." msgstr "Beskrivelse kreves." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Beskrivelsen er for lang (maks %d tegn)." -msgstr[1] "Beskrivelsen er for lang (maks %d tegn)." - #. 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." @@ -1590,7 +1738,17 @@ msgstr "Du må være en administrator for å redigere gruppen." msgid "Use this form to edit the group." msgstr "Bruk dette skjemaet for å redigere gruppen." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Beskrivelsen er for lang (maks %d tegn)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "For mange alias! Maksimum %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Ugyldig alias: «%s»" @@ -2815,11 +2973,6 @@ msgstr "Ny gruppe" msgid "Use this form to create a new group." msgstr "Bruk dette skjemaet for å opprette en ny gruppe." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "beskrivelse er for lang (maks %d tegn)" - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Ny melding" @@ -8071,17 +8224,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "noen få sekunder siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "omtrent ett minutt siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8089,12 +8242,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "omtrent én time siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8102,12 +8255,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "omtrent én dag siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8115,12 +8268,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "omtrent én måned siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8128,7 +8281,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "omtrent ett år siden" @@ -8173,18 +8326,3 @@ msgstr "Ingen bruker-ID spesifisert." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Beklager, navnet er for langt (max 250 tegn)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Plassering er for lang (maks 255 tegn)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Dette er for langt. Meldingen kan bare være %d tegn lang." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "«Om meg» er for lang (maks %d tegn)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Beskriv degselv og dine interesser med %d tegn" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 6475fb5a70..d15c7f0037 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,70 +12,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:22+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Toegang" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Instellingen voor sitetoegang" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Registratie" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Mogen anonieme gebruikers (niet aangemeld) de website bekijken?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Geen anonieme toegang" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Registratie alleen op uitnodiging." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Alleen op uitnodiging" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Nieuwe registraties uitschakelen." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Gesloten" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" msgstr "Toegangsinstellingen opslaan" +#. 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 to store form data in the Paths admin panel. @@ -83,7 +84,7 @@ msgstr "Toegangsinstellingen opslaan" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -91,29 +92,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" +#. 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 msgid "No such page." msgstr "Deze pagina bestaat niet." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -126,41 +143,42 @@ msgid "No such user." msgstr "Onbekende gebruiker." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s en vrienden, pagina %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s en vrienden" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed voor vrienden van %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed voor vrienden van %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed voor vrienden van %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -170,7 +188,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -179,9 +197,9 @@ msgstr "" "Probeer te abonneren op meer gebruikers, [word lid van een groep](%%action." "groups%%) of plaats zelf berichten." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -193,7 +211,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -202,65 +220,80 @@ msgstr "" "U kunt een [gebruiker aanmaken](%%%%action.register%%%%) en %s dan porren of " "een bericht sturen." -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "U en vrienden" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Updates van %1$s en vrienden op %2$s." #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "De API-functie is niet aangetroffen." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Deze methode vereist een POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -269,16 +302,19 @@ msgstr "" "waardes: sms, im, none." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Het was niet mogelijk de gebruiker bij te werken." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -293,8 +329,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -313,10 +349,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -324,8 +362,9 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Het was niet mogelijk uw ontwerp bij te werken." @@ -344,31 +383,31 @@ msgstr "Het blokkeren van de gebruiker is mislukt." msgid "Unblock user failed." msgstr "Het deblokkeren van de gebruiker is mislukt." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Privéberichten van %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Alle privéberichten van %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Privéberichten aan %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Alle privéberichten aan %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Het bericht is leeg!" @@ -403,7 +442,9 @@ msgid "" msgstr "Stuur geen berichten naar uzelf. Zeg het gewoon in uw hoofd." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Er is geen status gevonden met dit ID." @@ -419,49 +460,59 @@ msgstr "Deze mededeling staat al in uw favorietenlijst." msgid "Could not create favorite." msgstr "Het was niet mogelijk een favoriet aan te maken." -#: actions/apifavoritedestroy.php:124 +#. 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 "Deze mededeling staat niet in uw favorietenlijst." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "" "Het was niet mogelijk deze mededeling van uw favorietenlijst te verwijderen." -#: actions/apifriendshipscreate.php:110 +#. 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 "U kunt deze gebruiker niet volgen, omdat deze niet bestaat." -#: actions/apifriendshipscreate.php:119 +#. 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 "U kunt de gebruiker %s niet volgen, omdat deze al op uw lijst staat." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "" "Het is niet mogelijk deze gebruiker niet langer te volgen: de gebruiker is " "niet aangetroffen." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "U kunt het abonnement op uzelf niet opzeggen." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "" "Er moeten twee gebruikersnamen (screen_names) of ID's opgegeven worden." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Het was niet mogelijk de brongebruiker te bepalen." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Het was niet mogelijk de doelgebruiker te vinden." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -471,7 +522,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -480,7 +531,7 @@ msgstr "" #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -489,7 +540,7 @@ msgstr "Ongeldige gebruikersnaam!" #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -498,132 +549,162 @@ msgstr "De thuispagina is geen geldige URL." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 -#, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "De volledige naam is te lang (maximaal 255 tekens)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 #, php-format -msgid "Description is too long (max %d chars)." -msgstr "De beschrijving is te lang (maximaal %d tekens)." +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "De beschrijving is te lang (maximaal %d teken)." +msgstr[1] "De beschrijving is te lang (maximaal %d tekens)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 -#, fuzzy msgid "Location is too long (maximum 255 characters)." -msgstr "Locatie is te lang (maximaal 255 tekens)." +msgstr "De locatie is te lang (maximaal 255 tekens)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 #, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Te veel aliassen! Het maximale aantal is %d." +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Te veel aliassen! Het maximale aantal is %d." +msgstr[1] "Te veel aliassen! Het maximale aantal is %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Ongeldige alias: \"%s\"." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "De alias \"%s\" wordt al gebruikt. Geef een andere alias op." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Een alias kan niet hetzelfde zijn als de gebruikersnaam." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "De groep is niet aangetroffen." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "U bent al lid van die groep." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "Een beheerder heeft ingesteld dat u geen lid mag worden van die groep." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Het was niet mogelijk gebruiker %1$s toe te voegen aan de groep %2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "U bent geen lid van deze groep." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Het was niet mogelijk gebruiker %1$s uit de group %2$s te verwijderen." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Groepen van %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "Groepen op de site %1$s waar %2$s lid van is." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s groepen" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "groepen op %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Uploaden is mislukt." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 msgid "Invalid request token or verifier." msgstr "Het opgegeven token of controlegetal is ongeldig." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "Er is geen oauth_token parameter opgegeven." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 msgid "Invalid request token." msgstr "Ongeldig verzoektoken." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 -#, fuzzy +#: actions/apioauthauthorize.php:121 msgid "Request token already authorized." -msgstr "U hebt niet de juiste toegangsrechten." +msgstr "Het verzoektoken is al geautoriseerd." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -650,12 +731,11 @@ msgid "Invalid nickname / password!" msgstr "Ongeldige gebruikersnaam of wachtwoord." #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 -#, fuzzy +#: actions/apioauthauthorize.php:217 msgid "Database error inserting oauth_token_association." msgstr "" -"Er is een databasefout opgetreden tijdens het toevoegen van de OAuth " -"applicatiegebruiker." +"Er is een databasefout opgetreden tijdens het invoegen van de " +"oauth_token_association." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Client error displayed submitting invalid form data for edit application. @@ -663,7 +743,7 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -673,19 +753,32 @@ msgid "Unexpected form submission." msgstr "Het formulier is onverwacht ingezonden." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Een applicatie vraagt toegang tot uw gebruikersgegevens" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Toegang toestaan of ontzeggen" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +msgstr "" +"Een applicatie vraagt toegang van het type \"%3$s tot uw " +"gebruikersgegevens bij %4$s. Geef alleen toegang tot uw gebruiker bij %4$s " +"aan derde partijen die u vertrouwt." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -697,14 +790,14 @@ msgstr "" "toegang tot uw gebruiker bij %4$s aan derde partijen die u vertrouwt." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 msgctxt "LEGEND" msgid "Account" msgstr "Gebruikersgegevens" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -714,7 +807,7 @@ msgstr "Gebruikersnaam" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Wachtwoord" @@ -725,7 +818,7 @@ msgstr "Wachtwoord" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -733,38 +826,52 @@ msgid "Cancel" msgstr "Annuleren" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 msgctxt "BUTTON" msgid "Allow" msgstr "Toestaan" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 msgid "Authorize access to your account information." msgstr "Toegang tot uw gebruikersgegevens geven." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 msgid "Authorization canceled." msgstr "Autorisatie geannuleerd." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "Het verzoektoken %s is ingetrokken." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, php-format -msgid "You have successfully authorized %s." -msgstr "U hebt %s geautoriseerd." +#. 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 "U hebt de applicatie toegang gegeven" -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +msgstr "" +"Ga terug naar de applicatie en voer daar de volgende beveiligingscode in om " +"het proces af te ronden." + +#. 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:589 +#: actions/apioauthauthorize.php:632 +#, php-format +msgid "You have successfully authorized %s" +msgstr "U hebt %s toegang gegeven" + +#. 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 " @@ -773,45 +880,54 @@ msgstr "" "Ga terug naar %s en voer daar de volgende beveiligingscode in om het proces " "af te ronden." -#: actions/apistatusesdestroy.php:112 +#. 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 "Deze methode vereist een POST of DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "U kunt de status van een andere gebruiker niet verwijderen." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "De mededeling bestaat niet." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "U kunt uw eigen mededeling niet herhalen." +#. 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:541 msgid "Already repeated that notice." msgstr "U hebt die mededeling al herhaald." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "De status is verwijderd." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Er is geen status gevonden met dit ID." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "De client moet een parameter \"status\" met een waarde opgeven." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, 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." @@ -819,11 +935,13 @@ msgstr[0] "De mededeling is te lang. Gebruik maximaal %d teken." msgstr[1] "De mededeling is te lang. Gebruik maximaal %d tekens." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 msgid "Parent notice not found." msgstr "De bovenliggende mededeling is niet aangetroffen." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -833,67 +951,104 @@ msgstr[1] "" "De maximale mededelingenlengte is %d tekens, inclusief de URL voor de " "bijlage." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Niet-ondersteund bestandsformaat." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Favorieten van %2$s" -#: actions/apitimelinefavorites.php:119 +#. 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 / %2$s." -msgstr "%1$s updates op de favorietenlijst geplaatst door %2$s / %3$s" +msgid "%1$s updates favorited by %2$s / %3$s." +msgstr "" +"Mededelingen van %1$s die op de favorietenlijst zijn geplaatst door %2$s / %3" +"$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, php-format +msgid "Could not generate feed for group - %s" +msgstr "Het was niet mogelijk een groepfeed te maken - %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. +#: actions/apitimelinementions.php:115 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Updates over %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 "%1$s updates die een reactie zijn op updates van %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s publieke tijdlijn" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s updates van iedereen" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +msgid "Unimplemented." +msgstr "Niet geïmplementeerd." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Herhaald naar %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Herhaald van %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Mededelingen met het label %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Updates met het label %1$s op %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "De API-functie is in bewerking." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Niet aangetroffen." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "De pagina is niet aangetroffen." #: actions/attachment.php:73 msgid "No such attachment." @@ -1530,16 +1685,6 @@ msgstr "Deze naam wordt al gebruikt. Kies een andere." msgid "Description is required." msgstr "Een beschrijving is verplicht" -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "De beschrijving is te lang (maximaal %d teken)." -msgstr[1] "De beschrijving is te lang (maximaal %d tekens)." - #. 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." @@ -1597,7 +1742,17 @@ msgstr "U moet beheerder zijn om de groep te kunnen bewerken." msgid "Use this form to edit the group." msgstr "Gebruik dit formulier om de groep te bewerken." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "De beschrijving is te lang (maximaal %d tekens)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Te veel aliassen! Het maximale aantal is %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Ongeldige alias: \"%s\"" @@ -2806,7 +2961,6 @@ msgstr "Geen huidige status." #. TRANS: This is the title of the form for adding a new application. #: actions/newapplication.php:52 -#, fuzzy msgid "New application" msgstr "Nieuwe applicatie" @@ -2820,7 +2974,6 @@ msgid "Use this form to register a new application." msgstr "Gebruik dit formulier om een nieuwe applicatie te registreren." #: actions/newapplication.php:169 -#, fuzzy msgid "Name is too long (maximum 255 chars)." msgstr "De naam is te lang (maximaal 255 tekens)." @@ -2829,7 +2982,6 @@ msgid "Source URL is required." msgstr "Een bron-URL is verplicht." #: actions/newapplication.php:199 -#, fuzzy msgid "Organization is too long (maximum 255 chars)." msgstr "De organisatienaam is te lang (maximaal 255 tekens)." @@ -2845,11 +2997,6 @@ msgstr "Nieuwe groep" msgid "Use this form to create a new group." msgstr "Gebruik dit formulier om een nieuwe groep aan te maken." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "de beschrijving is te lang (maximaal %d tekens)" - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Nieuw bericht" @@ -3645,7 +3792,7 @@ msgstr "" #. 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:230 -#, fuzzy, php-format +#, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." msgstr[0] "De persoonlijke beschrijving is te lang (maximaal %d teken)." @@ -3658,9 +3805,8 @@ msgstr "Er is geen tijdzone geselecteerd." #. TRANS: Validation error in form for profile settings. #: actions/profilesettings.php:281 -#, fuzzy msgid "Language is too long (maximum 50 characters)." -msgstr "Taal is te lang (maximaal 50 tekens)." +msgstr "De taal is te lang (maximaal 50 tekens)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. @@ -5836,6 +5982,7 @@ msgstr "Er is geen gebruiker gedefinieerd voor single-usermodus." #: classes/User.php:906 msgid "Single-user mode code called when not enabled." msgstr "" +"De \"single-user\"-modus is aangeroepen terwijl deze niet is ingeschakeld." #. TRANS: Server exception thrown when creating a group failed. #: classes/User_group.php:495 @@ -6333,12 +6480,13 @@ msgstr "Het was niet mogelijk een anonieme OAuthapplicatie aan te maken." msgid "" "Could not find a profile and application associated with the request token." msgstr "" +"Het profiel en de applicatie die zijn geassocieerd met het verzoektoken zijn " +"niet aangetroffen." #. TRANS: Exception thrown when no access token can be issued. #: lib/apioauthstore.php:186 -#, fuzzy msgid "Could not issue access token." -msgstr "Het was niet mogelijk het bericht in te voegen." +msgstr "Het was niet mogelijk het toegangstoken uit te geven." #. TRANS: Server error displayed when a database error occurs. #: lib/apioauthstore.php:243 @@ -7941,9 +8089,8 @@ msgstr "De gebruikersrol \"%s\" voor deze gebruiker intrekken" #. TRANS: Client error on action trying to visit a non-existing page. #: lib/router.php:847 -#, fuzzy msgid "Page not found." -msgstr "De API-functie is niet aangetroffen." +msgstr "De pagina is niet aangetroffen." #: lib/sandboxform.php:67 msgid "Sandbox" @@ -8182,17 +8329,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "een paar seconden geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "ongeveer een minuut geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8200,12 +8347,12 @@ msgstr[0] "ongeveer een minuut geleden" msgstr[1] "ongeveer %d minuten geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "ongeveer een uur geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8213,12 +8360,12 @@ msgstr[0] "ongeveer een uur geleden" msgstr[1] "ongeveer %d uur geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "ongeveer een dag geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8226,12 +8373,12 @@ msgstr[0] "ongeveer een dag geleden" msgstr[1] "ongeveer %d dagen geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "ongeveer een maand geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8239,7 +8386,7 @@ msgstr[0] "ongeveer een maand geleden" msgstr[1] "ongeveer %d maanden geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "ongeveer een jaar geleden" @@ -8260,11 +8407,12 @@ msgstr "%s is geen geldige kleur. Gebruik drie of zes hexadecimale tekens." #, php-format msgid "Unknown user. Go to %s to add your address to your account" msgstr "" +"Onbekende gebruiker. Ga naar %s om uw adres toe te voegen aan uw gebruiker." #. 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:404 -#, fuzzy, php-format +#, 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] "" @@ -8287,18 +8435,3 @@ msgstr "Geen gebruiker opgegeven; de back-upgebruiker wordt gebruikt." #, php-format msgid "%d entries in backup." msgstr "%d regels in de back-up." - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "De volledige naam is te lang (maximaal 255 tekens)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Locatie is te lang (maximaal 255 tekens)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Dat is te lang. De maximale berichtlengte is %d tekens." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "De beschrijving is te lang (maximaal %d tekens)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Geef een beschrijving van uzelf en uw interesses in %d tekens" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index d80511f3e5..450b7d4903 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -10,77 +10,78 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:24+0000\n" "Language-Team: Norwegian Nynorsk \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 #, fuzzy msgid "Access" msgstr "Godta" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 #, fuzzy msgid "Site access settings" msgstr "Avatar-innstillingar" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 #, fuzzy msgid "Registration" msgstr "Registrér" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 #, fuzzy msgctxt "LABEL" msgid "Private" msgstr "Personvern" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "" #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 #, fuzzy msgid "Invite only" msgstr "Invitér" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "" #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 #, fuzzy msgid "Closed" msgstr "Blokkér" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 #, fuzzy msgid "Save access settings" msgstr "Avatar-innstillingar" +#. 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 to store form data in the Paths admin panel. @@ -88,7 +89,7 @@ msgstr "Avatar-innstillingar" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -97,6 +98,7 @@ msgctxt "BUTTON" msgid "Save" msgstr "Lagra" +#. 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 @@ -104,23 +106,38 @@ msgstr "Lagra" msgid "No such page." msgstr "Dette emneord finst ikkje." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -133,41 +150,42 @@ msgid "No such user." msgstr "Brukaren finst ikkje." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%s med vener" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s med vener" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Straum for vener av %s" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Straum for vener av %s" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Straum for vener av %s" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -175,16 +193,16 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -193,91 +211,109 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to them." msgstr "" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 #, fuzzy msgid "You and friends" msgstr "%s med vener" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Oppdateringar frå %1$s og vener på %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 #, fuzzy msgid "API method not found." msgstr "Fann ikkje API-metode." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Dette krev ein POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 #, fuzzy msgid "Could not update user." msgstr "Kan ikkje oppdatera brukar." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -293,8 +329,8 @@ msgstr "Kan ikkje lagra 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -309,10 +345,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -321,8 +359,9 @@ msgid "Unable to save your design settings." msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. 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 "Kan ikkje oppdatera brukar." @@ -343,31 +382,31 @@ msgstr "Blokkering av brukar feila." msgid "Unblock user failed." msgstr "De-blokkering av brukar feila." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, fuzzy, php-format msgid "Direct messages from %s" msgstr "Direkte meldingar til %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Alle direkte meldingar sendt fra %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Direkte meldingar til %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Alle direkte meldingar sendt til %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Inga meldingstekst!" @@ -403,7 +442,9 @@ msgstr "" "fredleg." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Fann ingen status med den ID-en." @@ -420,48 +461,58 @@ msgstr "Denne notisen er alt ein favoritt!" msgid "Could not create favorite." msgstr "Kunne ikkje lagre favoritt." -#: actions/apifavoritedestroy.php:124 +#. TRANS: Client error displayed when trying to remove a favourite that was not a favourite. +#: actions/apifavoritedestroy.php:122 #, fuzzy msgid "That status is not a favorite." msgstr "Denne notisen er ikkje ein favoritt!" -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Kunne ikkje slette favoritt." -#: actions/apifriendshipscreate.php:110 +#. 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 "Kan ikkje fylgja brukar: %s er allereie på lista di." -#: actions/apifriendshipscreate.php:119 +#. 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 "Kan ikkje fylgja brukar: %s er allereie på lista di." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Kan ikkje fylgja brukar: %s er allereie på lista di." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 #, fuzzy msgid "You cannot unfollow yourself." msgstr "Kan ikkje oppdatera brukar." -#: actions/apifriendshipsexists.php:91 +#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists. +#: actions/apifriendshipsexists.php:88 #, fuzzy msgid "Two valid IDs or screen_names must be supplied." msgstr "To brukar IDer eller kallenamn er naudsynte." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Kan ikkje oppdatera brukar." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Kan ikkje oppdatera brukar." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -469,7 +520,7 @@ msgstr "Kallenamn må berre ha små bokstavar og nummer, ingen mellomrom." #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -477,7 +528,7 @@ msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -486,7 +537,7 @@ msgstr "Ikkje eit gyldig brukarnamn." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -495,137 +546,170 @@ msgstr "Heimesida er ikkje ei gyldig internettadresse." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Plassering er for lang (maksimalt 255 teikn)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Plassering er for lang (maksimalt 255 teikn)." +msgstr[1] "Plassering er for lang (maksimalt 255 teikn)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Plassering er for lang (maksimalt 255 teikn)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 #, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "" +msgstr[1] "" -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, fuzzy, php-format msgid "Invalid alias: \"%s\"." msgstr "Ugyldig merkelapp: %s" -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Finst ikkje." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 #, fuzzy msgid "You are already a member of that group." msgstr "Du er allereie medlem av den gruppa" +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "" +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Kunne ikkje bli med i gruppa." -#: actions/apigroupleave.php:116 +#. 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 "Du er ikkje medlem av den gruppa." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Kunne ikkje laga gruppa." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, fuzzy, php-format msgid "%s's groups" msgstr "%s grupper" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 msgid "%1$s groups %2$s is a member of." msgstr "Grupper %s er medlem av" -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s grupper" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, fuzzy, php-format msgid "groups on %s" msgstr "Gruppe handlingar" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 #, fuzzy msgid "Upload failed." msgstr "Last opp fil" #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "Ugyldig notisinnhald" #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: 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:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Ugyldig storleik." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "Du tingar ikkje oppdateringar til den profilen." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -651,7 +735,7 @@ msgid "Invalid nickname / password!" msgstr "Ugyldig brukarnamn eller passord." #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s" @@ -662,7 +746,7 @@ msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s" #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -672,19 +756,29 @@ msgid "Unexpected form submission." msgstr "Uventa skjemasending." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: 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, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -693,7 +787,7 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -701,7 +795,7 @@ msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -711,7 +805,7 @@ msgstr "Kallenamn" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Passord" @@ -722,7 +816,7 @@ msgstr "Passord" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 #, fuzzy @@ -731,87 +825,109 @@ msgid "Cancel" msgstr "Avbryt" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Alle" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: 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:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "Ingen stadfestingskode." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Du tingar ikkje oppdateringar til den profilen." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Du tingar ikkje oppdateringar til den profilen." + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Dette krev anten ein POST eller DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Du kan ikkje sletta statusen til ein annan brukar." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Denne notisen finst ikkje." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 #, fuzzy msgid "Cannot repeat your own notice." msgstr "Kan ikkje slå på notifikasjon." +#. 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:541 msgid "Already repeated that notice." msgstr "Kan ikkje sletta notisen." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 #, fuzzy msgid "Status deleted." msgstr "Lasta opp brukarbilete." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Fann ingen status med den ID-en." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -819,80 +935,118 @@ msgstr[0] "Du kan lasta opp ein logo for gruppa." msgstr[1] "Du kan lasta opp ein logo for gruppa." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "Fann ikkje API-metode." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, 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] "" msgstr[1] "" -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 "Støttar ikkje bileteformatet." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s sin status på %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s oppdateringar som svarar på oppdateringar frå %2$s / %3$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Kann ikkje oppdatera gruppa." + +#. 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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s sin status på %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 "%1$s oppdateringar som svarar på oppdateringar frå %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s offentleg tidsline" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s oppdateringar frå alle saman!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Kommando ikkje implementert." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, fuzzy, php-format msgid "Repeated to %s" msgstr "Svar til %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 msgid "Repeats of %s" msgstr "Svar til %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Notisar merka med %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 msgid "Updates tagged with %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "API-metoden er ikkje ferdig enno." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Finst ikkje." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "Fann ikkje API-metode." #: actions/attachment.php:73 msgid "No such attachment." @@ -1552,16 +1706,6 @@ msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." msgid "Description is required." msgstr "Beskriving" -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Plassering er for lang (maksimalt 255 teikn)." -msgstr[1] "Plassering er for lang (maksimalt 255 teikn)." - #. 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." @@ -1622,7 +1766,17 @@ msgstr "Du må være logga inn for å lage ei gruppe." msgid "Use this form to edit the group." msgstr "Bruk dette skjemaet for å redigere gruppa" -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Plassering er for lang (maksimalt 255 teikn)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Ugyldig merkelapp: %s" @@ -2865,11 +3019,6 @@ msgstr "Ny gruppe" msgid "Use this form to create a new group." msgstr "Bruk dette skjemaet for å lage ein ny gruppe." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "Plassering er for lang (maksimalt 255 teikn)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Ny melding" @@ -8071,17 +8220,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "eit par sekund sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "omtrent eitt minutt sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8089,12 +8238,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "omtrent ein time sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8102,12 +8251,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "omtrent ein dag sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8115,12 +8264,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "omtrent ein månad sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8128,7 +8277,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "omtrent eitt år sidan" @@ -8173,21 +8322,3 @@ msgstr "Ingen vald profil." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Plassering er for lang (maksimalt 255 teikn)." - -#, fuzzy -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Du kan lasta opp ein logo for gruppa." - -#, fuzzy -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Plassering er for lang (maksimalt %d teikn)." - -#, fuzzy -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Skriv om deg og interessene dine med 140 teikn" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index fd51df3e98..633fec590d 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:25+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:27+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,64 +20,65 @@ 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.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Dostęp" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Ustawienia dostępu witryny" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Rejestracja" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Zabronić anonimowym użytkownikom (niezalogowanym) przeglądać witrynę?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Prywatna" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Rejestracja tylko za zaproszeniem." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Tylko zaproszeni" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Wyłączenie nowych rejestracji." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Zamknięte" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" msgstr "Zapisz ustawienia dostępu" +#. 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 to store form data in the Paths admin panel. @@ -85,7 +86,7 @@ msgstr "Zapisz ustawienia dostępu" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -93,29 +94,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Zapisz" +#. 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 msgid "No such page." msgstr "Nie ma takiej strony." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -128,41 +145,42 @@ msgid "No such user." msgstr "Brak takiego użytkownika." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s i przyjaciele, strona %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "Użytkownik %s i przyjaciele" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Kanał dla znajomych użytkownika %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Kanał dla znajomych użytkownika %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Kanał dla znajomych użytkownika %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -172,7 +190,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -181,9 +199,9 @@ msgstr "" "Spróbuj subskrybować więcej osób, [dołączyć do grupy](%%action.groups%%) lub " "wysłać coś samemu." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -194,7 +212,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -203,65 +221,80 @@ msgstr "" "Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i wtedy " "szturchniesz użytkownika %s lub wyślesz mu wpis." -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Ty i przyjaciele" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualizacje z %1$s i przyjaciół na %2$s." #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "Nie odnaleziono metody 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Ta metoda wymaga POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -269,16 +302,19 @@ msgstr "" "Należy podać parametr o nazwie \"device\" z jedną z wartości: sms, im, none." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Nie można zaktualizować użytkownika." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -293,8 +329,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -316,10 +352,12 @@ msgstr[2] "" #. 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -327,8 +365,9 @@ msgid "Unable to save your design settings." msgstr "Nie można zapisać ustawień wyglądu." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Nie można zaktualizować wyglądu." @@ -347,31 +386,31 @@ msgstr "Zablokowanie użytkownika nie powiodło się." msgid "Unblock user failed." msgstr "Odblokowanie użytkownika nie powiodło się." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Bezpośrednie wiadomości do użytkownika %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Wszystkie bezpośrednie wiadomości wysłane od użytkownika %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Bezpośrednia wiadomość do użytkownika %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Wszystkie bezpośrednie wiadomości wysłane do użytkownika %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Brak tekstu wiadomości." @@ -407,7 +446,9 @@ msgid "" msgstr "Nie wysyłaj wiadomości do siebie, po prostu powiedz to sobie po cichu." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Nie odnaleziono stanów z tym identyfikatorem." @@ -423,47 +464,57 @@ msgstr "Ten stan jest już ulubiony." msgid "Could not create favorite." msgstr "Nie można utworzyć ulubionego wpisu." -#: actions/apifavoritedestroy.php:124 +#. 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 "Ten stan nie jest ulubiony." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Nie można usunąć ulubionego wpisu." -#: actions/apifriendshipscreate.php:110 +#. 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 "Nie można obserwować użytkownika: nie odnaleziono profilu." -#: actions/apifriendshipscreate.php:119 +#. 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 "Nie można obserwować użytkownika: %s jest już na twojej liście." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "" "Nie można zrezygnować z obserwacji użytkownika: nie odnaleziono użytkownika." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Nie można zrezygnować z obserwacji samego siebie." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "" "Należy dostarczyć dwa prawidłowe identyfikatory lub nazwy użytkowników." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Nie można określić użytkownika źródłowego." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Nie można odnaleźć użytkownika docelowego." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -471,7 +522,7 @@ msgstr "Pseudonim może zawierać tylko małe litery i cyfry, bez spacji." #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -479,7 +530,7 @@ msgstr "Pseudonim jest już używany. Spróbuj innego." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -488,7 +539,7 @@ msgstr "To nie jest prawidłowy pseudonim." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -497,132 +548,164 @@ msgstr "Strona domowa nie jest prawidłowym adresem URL." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 -#, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Imię i nazwisko jest za długie (maksymalnie 255 znaków)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 #, php-format -msgid "Description is too long (max %d chars)." -msgstr "Opis jest za długi (maksymalnie %d znaków)." +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Opis jest za długi (maksymalnie %d znak)." +msgstr[1] "Opis jest za długi (maksymalnie %d znaki)." +msgstr[2] "Opis jest za długi (maksymalnie %d znaków)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 -#, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Położenie jest za długie (maksymalnie 255 znaków)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Za dużo aliasów. Maksymalnie %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Za dużo aliasów. Maksymalnie %d." +msgstr[1] "Za dużo aliasów. Maksymalnie %d." +msgstr[2] "Za dużo aliasów. Maksymalnie %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Nieprawidłowy alias: \"%s\"." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" jest już używany. Spróbuj innego." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Alias nie może być taki sam jak pseudonim." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Nie odnaleziono grupy." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Jesteś już członkiem tej grupy." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "Zostałeś zablokowany w tej grupie przez administratora." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Nie można dołączyć użytkownika %1$s do grupy %2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Nie jesteś członkiem tej grupy." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Nie można usunąć użytkownika %1$s z grupy %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Grupy użytkownika %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "%2$s jest członkiem grup %1$s." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Grupy %s" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "grupy na %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Wysłanie nie powiodło się." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 msgid "Invalid request token or verifier." msgstr "Nieprawidłowy token lub element sprawdzający żądania." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "Nie podano parametru oauth_token." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 msgid "Invalid request token." msgstr "Nieprawidłowy token żądania." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 -#, fuzzy +#: actions/apioauthauthorize.php:121 msgid "Request token already authorized." -msgstr "Brak upoważnienia." +msgstr "Token żądania został już upoważniony." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -647,10 +730,9 @@ msgid "Invalid nickname / password!" msgstr "Nieprawidłowy pseudonim/hasło." #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 -#, fuzzy +#: actions/apioauthauthorize.php:217 msgid "Database error inserting oauth_token_association." -msgstr "Błąd bazy danych podczas wprowadzania użytkownika aplikacji OAuth." +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: Client error displayed submitting invalid form data for edit application. @@ -658,7 +740,7 @@ msgstr "Błąd bazy danych podczas wprowadzania użytkownika aplikacji OAuth." #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -668,19 +750,32 @@ msgid "Unexpected form submission." msgstr "Nieoczekiwane wysłanie formularza." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Aplikacja chce połączyć się z kontem użytkownika" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Zezwolić czy odmówić dostęp" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"Aplikacja %1$s autorstwa %2$s chciałaby " +"uzyskać możliwość %3$s danych konta %4$s. Dostęp do konta %4" +"$s powinien być udostępniany tylko zaufanym osobom trzecim." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -692,14 +787,14 @@ msgstr "" "$s powinien być udostępniany tylko zaufanym osobom trzecim." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 msgctxt "LEGEND" msgid "Account" msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -709,7 +804,7 @@ msgstr "Pseudonim" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Hasło" @@ -720,7 +815,7 @@ msgstr "Hasło" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -728,38 +823,54 @@ msgid "Cancel" msgstr "Anuluj" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 msgctxt "BUTTON" msgid "Allow" msgstr "Zezwól" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 msgid "Authorize access to your account information." msgstr "Upoważnij dostęp do informacji konta." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 msgid "Authorization canceled." msgstr "Anulowano upoważnienie." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "Token żądania %s został unieważniony." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Pomyślnie upoważniono %s." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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 +#, fuzzy +msgid "" +"Please return to the application and enter the following security code to " +"complete the process." +msgstr "" +"Proszę wrócić do %s i podać następujący kod bezpieczeństwa, aby ukończyć " +"proces." + +#. 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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Pomyślnie upoważniono %s." + +#. 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 " @@ -768,45 +879,54 @@ msgstr "" "Proszę wrócić do %s i podać następujący kod bezpieczeństwa, aby ukończyć " "proces." -#: actions/apistatusesdestroy.php:112 +#. 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 "Ta metoda wymaga POST lub DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Nie można usuwać stanów innych użytkowników." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Nie ma takiego wpisu." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Nie można powtórzyć własnego wpisu." +#. 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:541 msgid "Already repeated that notice." msgstr "Już powtórzono ten wpis." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Usunięto stan." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Nie odnaleziono stanów z tym identyfikatorem." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "Klient musi dostarczać parametr \"stan\" z wartością." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, 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." @@ -815,11 +935,13 @@ msgstr[1] "Wpis jest za długi. Maksymalna długość wynosi %d znaki." msgstr[2] "Wpis jest za długi. Maksymalna długość wynosi %d znaków." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 msgid "Parent notice not found." msgstr "Nie odnaleziono wpisu nadrzędnego." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -830,67 +952,103 @@ msgstr[1] "" msgstr[2] "" "Maksymalny rozmiar wpisu wynosi %d znaków, w tym adres URL załącznika." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Nieobsługiwany format." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s/ulubione wpisy od %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "Użytkownik %1$s aktualizuje ulubione według %2$s/%2$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Nie można usunąć grupy %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. +#: actions/apitimelinementions.php:115 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s/aktualizacje wspominające %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 "%1$s aktualizuje tę odpowiedź na aktualizacje od %2$s/%3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Publiczna oś czasu użytkownika %s" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "Użytkownik %s aktualizuje od każdego." -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Niezaimplementowana metoda." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Powtórzone dla %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Powtórzenia %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Wpisy ze znacznikiem %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualizacje ze znacznikiem %1$s na %2$s." -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "Metoda API jest w trakcie tworzenia." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Nie odnaleziono." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "Nie odnaleziono strony." #: actions/attachment.php:73 msgid "No such attachment." @@ -1520,17 +1678,6 @@ msgstr "Nazwa jest już używana. Spróbuj innej." msgid "Description is required." msgstr "Opis jest wymagany." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Opis jest za długi (maksymalnie %d znak)." -msgstr[1] "Opis jest za długi (maksymalnie %d znaki)." -msgstr[2] "Opis jest za długi (maksymalnie %d znaków)." - #. 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." @@ -1588,7 +1735,17 @@ msgstr "Musisz być administratorem, aby zmodyfikować grupę." msgid "Use this form to edit the group." msgstr "Użyj tego formularza, aby zmodyfikować grupę." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Opis jest za długi (maksymalnie %d znaków)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Za dużo aliasów. Maksymalnie %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Nieprawidłowy alias: \"%s\"" @@ -2787,7 +2944,6 @@ msgstr "Brak obecnego stanu." #. TRANS: This is the title of the form for adding a new application. #: actions/newapplication.php:52 -#, fuzzy msgid "New application" msgstr "Nowa aplikacja" @@ -2801,7 +2957,6 @@ msgid "Use this form to register a new application." msgstr "Użyj tego formularza, aby zarejestrować aplikację." #: actions/newapplication.php:169 -#, fuzzy msgid "Name is too long (maximum 255 chars)." msgstr "Nazwa jest za długa (maksymalnie 255 znaków)." @@ -2810,7 +2965,6 @@ msgid "Source URL is required." msgstr "Źródłowy adres URL jest wymagany." #: actions/newapplication.php:199 -#, fuzzy msgid "Organization is too long (maximum 255 chars)." msgstr "Organizacja jest za długa (maksymalnie 255 znaków)." @@ -2826,11 +2980,6 @@ msgstr "Nowa grupa" msgid "Use this form to create a new group." msgstr "Użyj tego formularza, aby utworzyć nową grupę." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "opis jest za długi (maksymalnie %d znaków)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Nowa wiadomość" @@ -3619,7 +3768,7 @@ msgstr "" #. 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:230 -#, fuzzy, php-format +#, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." msgstr[0] "Wpis \"O mnie\" jest za długi (maksymalnie %d znak)." @@ -3633,7 +3782,6 @@ msgstr "Nie wybrano strefy czasowej." #. TRANS: Validation error in form for profile settings. #: actions/profilesettings.php:281 -#, fuzzy msgid "Language is too long (maximum 50 characters)." msgstr "Język jest za długi (maksymalnie 50 znaków)." @@ -5780,7 +5928,7 @@ msgstr "" #. TRANS: Server exception. #: classes/User.php:906 msgid "Single-user mode code called when not enabled." -msgstr "" +msgstr "Wywołano kod pojedynczego użytkownika, kiedy nie był włączony." #. TRANS: Server exception thrown when creating a group failed. #: classes/User_group.php:495 @@ -6278,13 +6426,12 @@ msgstr "Nie można utworzyć anonimowej aplikacji OAuth." #: lib/apioauthstore.php:151 msgid "" "Could not find a profile and application associated with the request token." -msgstr "" +msgstr "Nie można odnaleźć profilu i aplikacji powiązanych z tokenem żądania." #. TRANS: Exception thrown when no access token can be issued. #: lib/apioauthstore.php:186 -#, fuzzy msgid "Could not issue access token." -msgstr "Nie można wprowadzić wiadomości." +msgstr "Nie można wywołać tokenu żądania." #. TRANS: Server error displayed when a database error occurs. #: lib/apioauthstore.php:243 @@ -7883,9 +8030,8 @@ msgstr "Unieważnij rolę \"%s\" tego użytkownika" #. TRANS: Client error on action trying to visit a non-existing page. #: lib/router.php:847 -#, fuzzy msgid "Page not found." -msgstr "Nie odnaleziono metody API." +msgstr "Nie odnaleziono strony." #: lib/sandboxform.php:67 msgid "Sandbox" @@ -8121,17 +8267,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "kilka sekund temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "około minutę temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8140,12 +8286,12 @@ msgstr[1] "około %d minut temu" msgstr[2] "około %d minut temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "około godzinę temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8154,12 +8300,12 @@ msgstr[1] "około %d godzin temu" msgstr[2] "około %d godzin temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "blisko dzień temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8168,12 +8314,12 @@ msgstr[1] "około %d dni temu" msgstr[2] "około %d dni temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "około miesiąc temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8182,7 +8328,7 @@ msgstr[1] "około %d miesięcy temu" msgstr[2] "około %d miesięcy temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "około rok temu" @@ -8205,16 +8351,17 @@ msgstr "" #, php-format msgid "Unknown user. Go to %s to add your address to your account" msgstr "" +"Nieznany użytkownik. Proszę przejść na stronę %s i dodać adres do konta" #. 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:404 -#, fuzzy, php-format +#, 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] "Wiadomość jest za długa - maksymalnie %1$d znaków, wysłano %2$d." -msgstr[1] "Wiadomość jest za długa - maksymalnie %1$d znaków, wysłano %2$d." -msgstr[2] "Wiadomość jest za długa - maksymalnie %1$d znaków, wysłano %2$d." +msgstr[0] "Wiadomość jest za długa. Maksymalnie %1$d znak, wysłano %2$d." +msgstr[1] "Wiadomość jest za długa. Maksymalnie %1$d znaki, wysłano %2$d." +msgstr[2] "Wiadomość jest za długa. Maksymalnie %1$d znaków, wysłano %2$d." #: scripts/restoreuser.php:82 #, php-format @@ -8229,18 +8376,3 @@ msgstr "Nie podano użytkownika; używanie użytkownika zapasowego." #, php-format msgid "%d entries in backup." msgstr "%d wpisów w kopii zapasowej." - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Imię i nazwisko jest za długie (maksymalnie 255 znaków)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Położenie jest za długie (maksymalnie 255 znaków)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Wiadomość jest za długa. Maksymalna długość wynosi %d znaków." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Wpis \"O mnie\" jest za długi (maksymalnie %d znaków)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Opisz się i swoje zainteresowania w %d znakach" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index f43df57e56..a150ea6966 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -13,70 +13,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:30+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\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: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Acesso" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Configurações de acesso ao site" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Registo" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Proibir utilizadores anónimos (sem sessão iniciada) de ver o site?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Privado" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Permitir o registo só a convidados." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Só por convite" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Impossibilitar registos novos." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Fechado" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" msgstr "Gravar configurações de acesso" +#. 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 to store form data in the Paths admin panel. @@ -84,7 +85,7 @@ msgstr "Gravar configurações de acesso" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -92,29 +93,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Gravar" +#. 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 msgid "No such page." msgstr "Página não foi encontrada." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -127,41 +144,42 @@ msgid "No such user." msgstr "Utilizador não foi encontrado." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s e amigos, página %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s e amigos" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Fonte para os amigos de %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Fonte para os amigos de %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Fonte para os amigos de %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -170,7 +188,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -179,9 +197,9 @@ msgstr "" "Tente subscrever mais pessoas, [juntar-se a um grupo](%%action.groups%%) ou " "publicar qualquer coisa." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -192,7 +210,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -201,65 +219,80 @@ msgstr "" "Podia [registar uma conta](%%%%action.register%%%%) e depois dar um toque em " "%s ou endereçar-lhe uma nota." -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Você e seus amigos" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizações de %1$s e amigos no %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "Método da API não encontrado." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Este método requer um POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -267,16 +300,19 @@ msgstr "" "Tem de especificar um parâmetro 'aparelho' com um dos valores: sms, im, none." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Não foi possível actualizar o utilizador." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -291,8 +327,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -311,10 +347,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -322,8 +360,9 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Não foi possível actualizar o seu estilo." @@ -342,31 +381,31 @@ msgstr "Bloqueio do utilizador falhou." msgid "Unblock user failed." msgstr "Desbloqueio do utilizador falhou." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Mensagens directas de %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Todas as mensagens directas enviadas por %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Mensagens directas para %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Todas as mensagens directas enviadas para %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Mensagem não tem texto!" @@ -401,7 +440,9 @@ msgid "" msgstr "Não auto-envie uma mensagem; basta lê-la baixinho a si próprio." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Nenhum estado encontrado com esse ID." @@ -417,46 +458,56 @@ msgstr "Este estado já é um favorito." msgid "Could not create favorite." msgstr "Não foi possível criar o favorito." -#: actions/apifavoritedestroy.php:124 +#. 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 "Esse estado não é um favorito." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Não foi possível eliminar o favorito." -#: actions/apifriendshipscreate.php:110 +#. 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 "Não foi possível seguir o utilizador: o perfil não foi encontrado." -#: actions/apifriendshipscreate.php:119 +#. 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 "Não foi possível seguir utilizador: %s já está na sua lista." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "" "Não foi possível deixar de seguir utilizador: Utilizador não encontrado." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Não pode deixar de seguir-se a si próprio." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "Têm de ser fornecidos dois IDs ou nomes de utilizador válidos." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Não foi possível determinar o utilizador de origem." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Não foi possível encontrar o utilizador de destino." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -464,7 +515,7 @@ msgstr "Utilizador só deve conter letras minúsculas e números. Sem espaços." #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -472,7 +523,7 @@ msgstr "Utilizador já é usado. Tente outro." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -481,7 +532,7 @@ msgstr "Utilizador não é válido." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -490,134 +541,167 @@ msgstr "Página de ínicio não é uma URL válida." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Nome completo demasiado longo (máx. 255 caracteres)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Descrição demasiado longa (máx. %d caracteres)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Descrição demasiado longa (máx. %d caracteres)." +msgstr[1] "Descrição demasiado longa (máx. %d caracteres)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Localidade demasiado longa (máx. 255 caracteres)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Demasiados nomes alternativos! Máx. %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Demasiados nomes alternativos! Máx. %d." +msgstr[1] "Demasiados nomes alternativos! Máx. %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Nome alternativo inválido: \"%s\"" -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Nome alternativo \"%s\" já em uso. Tente outro." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Um nome alternativo não pode ser igual ao nome do utilizador." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Grupo não foi encontrado." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Já é membro desse grupo." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "Foi bloqueado desse grupo pelo gestor." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Não foi possível adicionar %1$s ao grupo %2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Não é membro deste grupo." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Não foi possível remover %1$s do grupo %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Grupos de %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "Grupos de %1$s de que %2$s é membro." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Grupos de %s" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "Grupos em %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "O upload falhou." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "Chave de entrada especificada é inválida." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "Não foi fornecido o parâmetro oauth_token." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Chave inválida." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "Não tem autorização." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -642,7 +726,7 @@ msgid "Invalid nickname / password!" msgstr "Utilizador ou senha inválidos!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "Erro na base de dados ao inserir o utilizador da aplicação OAuth." @@ -653,7 +737,7 @@ msgstr "Erro na base de dados ao inserir o utilizador da aplicação OAuth." #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -663,19 +747,32 @@ msgid "Unexpected form submission." msgstr "Envio inesperado de formulário." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Uma aplicação pretende ligar-se à sua conta" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Permitir ou negar acesso" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"A aplicação %1$s por %2$s solicita " +"permissão para %3$s os dados da sua conta %4$s. Só deve " +"permitir acesso à sua conta %4$s a terceiros da sua confiança." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -687,7 +784,7 @@ msgstr "" "permitir acesso à sua conta %4$s a terceiros da sua confiança." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -695,7 +792,7 @@ msgstr "Conta" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -705,7 +802,7 @@ msgstr "Utilizador" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Senha" @@ -716,7 +813,7 @@ msgstr "Senha" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -724,86 +821,108 @@ msgid "Cancel" msgstr "Cancelar" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Permitir" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "Permitir ou negar acesso à informação da sua conta." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "Confirmação do mensageiro instantâneo cancelada." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, fuzzy, php-format msgid "The request token %s has been revoked." msgstr "A chave de pedido %s foi negada e retirada." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Não tem autorização." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Não tem autorização." + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Este método requer um POST ou DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Não pode apagar o estado de outro utilizador." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Nota não foi encontrada." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Não pode repetir a sua própria nota." +#. 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:541 msgid "Already repeated that notice." msgstr "Já repetiu essa nota." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Estado apagado." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Não foi encontrado um estado com esse ID." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "O cliente tem de fornecer um parâmetro 'status' com um valor." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -811,79 +930,118 @@ msgstr[0] "Demasiado longo. Tamanho máx. das notas é %d caracteres." msgstr[1] "Demasiado longo. Tamanho máx. das notas é %d caracteres." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "Método da API não encontrado." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, 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] "Tamanho máx. das notas é %d caracteres, incluindo a URL do anexo." msgstr[1] "Tamanho máx. das notas é %d caracteres, incluindo a URL do anexo." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Formato não suportado." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Favoritas de %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s actualizações preferidas por %2$s / %2$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Não foi possível actualizar o grupo." + +#. 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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Actualizações que mencionam %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 "%1$s actualizações em resposta a actualizações de %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Notas públicas de %s" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s actualizações de todos!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Método não implementado." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Repetida para %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Repetições de %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Notas categorizadas com %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizações categorizadas com %1$s em %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "Método da API em desenvolvimento." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Não encontrado." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +#, fuzzy +msgid "User not found." +msgstr "Método da API não encontrado." #: actions/attachment.php:73 msgid "No such attachment." @@ -1526,16 +1684,6 @@ msgstr "Nome já é usado. Tente outro." msgid "Description is required." msgstr "Descrição é obrigatória." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Descrição demasiado longa (máx. %d caracteres)." -msgstr[1] "Descrição demasiado longa (máx. %d caracteres)." - #. 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." @@ -1594,7 +1742,17 @@ msgstr "Tem de ser administrador para editar o grupo." msgid "Use this form to edit the group." msgstr "Use este formulário para editar o grupo." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Descrição demasiado longa (máx. %d caracteres)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Demasiados nomes alternativos! Máx. %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Nome alternativo inválido: \"%s\"" @@ -2834,11 +2992,6 @@ msgstr "Grupo novo" msgid "Use this form to create a new group." msgstr "Use este formulário para criar um grupo novo." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "descrição é demasiada extensa (máx. %d caracteres)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Mensagem nova" @@ -8141,17 +8294,17 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "há alguns segundos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "há cerca de um minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8159,12 +8312,12 @@ msgstr[0] "um minuto" msgstr[1] "%d minutos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "há cerca de uma hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8172,12 +8325,12 @@ msgstr[0] "uma hora" msgstr[1] "%d horas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "há cerca de um dia" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8185,12 +8338,12 @@ msgstr[0] "um dia" msgstr[1] "%d dias" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "há cerca de um mês" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8198,7 +8351,7 @@ msgstr[0] "um mês" msgstr[1] "%d meses" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "há cerca de um ano" @@ -8243,18 +8396,3 @@ msgstr "Não foi especificado um ID de utilizador." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Nome completo demasiado longo (máx. 255 caracteres)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Localidade demasiado longa (máx. 255 caracteres)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Demasiado longo. Tamanho máx. das mensagens é %d caracteres." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Biografia demasiado extensa (máx. %d caracteres)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Descreva-se e aos seus interesses (máx. 140 caracteres)" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index a9038bd093..f27f3c76d7 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -15,71 +15,72 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:32+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Acesso" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Configurações de acesso ao site" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Registro" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Impedir usuários anônimos (não autenticados) de visualizar o site?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Privado" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Cadastro liberado somente para convidados." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Somente convidados" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Desabilita novos registros." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Fechado" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 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 label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text to store form data in the Paths admin panel. @@ -87,7 +88,7 @@ msgstr "Salvar as configurações de acesso" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -95,29 +96,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Salvar" +#. 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 msgid "No such page." msgstr "Esta página não existe." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -130,41 +147,42 @@ msgid "No such user." msgstr "Este usuário não existe." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s e amigos, pág. %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s e amigos" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Fonte de mensagens dos amigos de %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Fonte de mensagens dos amigos de %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Fonte de mensagens dos amigos de %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -174,7 +192,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -183,9 +201,9 @@ msgstr "" "Tente assinar mais pessoas, [unir-ser a um grupo](%%action.groups%%) ou " "publicar algo." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -196,7 +214,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -205,65 +223,80 @@ msgstr "" "Por que você não [registra uma conta](%%action.register%%) pra ser o " "primeiro a publicar?" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Você e amigos" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Atualizações de %1$s e amigos no %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "O método da API não foi encontrado!" #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Este método requer um POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -272,16 +305,19 @@ msgstr "" "valores: sms, im, none" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Não foi possível atualizar o usuário." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -296,8 +332,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -316,10 +352,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -327,8 +365,9 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Não foi possível atualizar a sua aparência." @@ -347,31 +386,31 @@ msgstr "Não foi possível bloquear o usuário." msgid "Unblock user failed." msgstr "Não foi possível desbloquear o usuário." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Mensagens diretas de %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Todas as mensagens diretas enviadas por %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Mensagens diretas para %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Todas as mensagens diretas enviadas para %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Nenhuma mensagem de texto!" @@ -411,7 +450,9 @@ msgstr "" "si, discretamente." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Não foi encontrado nenhum status com esse ID." @@ -427,45 +468,55 @@ msgstr "Esta mensagem já é favorita!" msgid "Could not create favorite." msgstr "Não foi possível criar a favorita." -#: actions/apifavoritedestroy.php:124 +#. 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 "Essa mensagem não é favorita!" -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Não foi possível excluir a favorita." -#: actions/apifriendshipscreate.php:110 +#. 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 "Não é possível deixar de seguir o usuário: Usuário não encontrado." -#: actions/apifriendshipscreate.php:119 +#. 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 "Não é possível seguir o usuário: %s já está na sua lista." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Não é possível deixar de seguir o usuário: Usuário não encontrado." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Você não pode deixar de seguir você mesmo!" -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "Devem ser fornecidos dois IDs ou nomes de usuários válidos." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Não foi possível determinar o usuário de origem." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Não foi possível encontrar usuário de destino." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -475,7 +526,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -483,7 +534,7 @@ msgstr "Esta identificação já está em uso. Tente outro." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -492,7 +543,7 @@ msgstr "Não é uma identificação válida." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -501,134 +552,167 @@ msgstr "A URL informada não é válida." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Nome completo muito extenso (máx. 255 caracteres)" -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Descrição muito extensa (máximo %d caracteres)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Descrição muito extensa (máximo %d caracteres)." +msgstr[1] "Descrição muito extensa (máximo %d caracteres)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Localização muito extensa (máx. 255 caracteres)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Muitos apelidos! O máximo são %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Muitos apelidos! O máximo são %d." +msgstr[1] "Muitos apelidos! O máximo são %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Apelido inválido: \"%s\"." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "O apelido \"%s\" já está em uso. Tente outro." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "O apelido não pode ser igual à identificação." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "O grupo não foi encontrado." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Você já é membro desse grupo." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "O administrador desse grupo bloqueou sua inscrição." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Não foi possível associar o usuário %1$s ao grupo %2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Você não é membro deste grupo." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Não foi possível remover o usuário %1$s do grupo %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Grupos de %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "Grupos de %1$s nos quais %2$s é membro." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Grupos de %s" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "grupos no %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "O upload falhou." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "O token de autenticação especificado é inválido." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "Não foi fornecido nenhum parâmetro oauth_token" #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Token inválido." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "Você não está autorizado." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -654,7 +738,7 @@ msgid "Invalid nickname / password!" msgstr "Nome de usuário e/ou senha inválido(s)!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "" @@ -666,7 +750,7 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -676,19 +760,33 @@ msgid "Unexpected form submission." msgstr "Submissão inesperada de formulário." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Uma aplicação gostaria de se conectar à sua conta" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Permitir ou negar o acesso" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"A aplicação %1$s por %2$s solicita a " +"permissão para %3$s os dados da sua conta %4$s. Você deve " +"fornecer acesso à sua conta %4$s somente para terceiros nos quais você " +"confia." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -701,7 +799,7 @@ msgstr "" "confia." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -709,7 +807,7 @@ msgstr "Conta" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -719,7 +817,7 @@ msgstr "Usuário" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Senha" @@ -730,7 +828,7 @@ msgstr "Senha" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -738,86 +836,108 @@ msgid "Cancel" msgstr "Cancelar" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Permitir" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "Permitir ou negar o acesso às informações da sua conta." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "A confirmação do mensageiro instantâneo foi cancelada." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, fuzzy, php-format msgid "The request token %s has been revoked." msgstr "O token %s solicitado foi negado e revogado." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Você não está autorizado." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Você não está autorizado." + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Esse método requer um POST ou DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Você não pode excluir uma mensagem de outro usuário." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Essa mensagem não existe." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Você não pode repetir a sua própria mensagem." +#. 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:541 msgid "Already repeated that notice." msgstr "Você já repetiu essa mensagem." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "A mensagem foi excluída." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Não foi encontrada nenhuma mensagem com esse ID." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "O cliente tem de fornecer um parâmetro 'status' com um valor." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -825,79 +945,117 @@ msgstr[0] "Está muito extenso. O tamanho máximo é de %d caracteres." msgstr[1] "Está muito extenso. O tamanho máximo é de %d caracteres." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "O método da API não foi encontrado!" -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, 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] "O tamanho máximo da mensagem é de %d caracteres" msgstr[1] "O tamanho máximo da mensagem é de %d caracteres" -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Formato não suportado." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Favoritas de %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s marcadas como favoritas por %2$s / %2$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Não foi possível atualizar o grupo." + +#. 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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Mensagens mencionando %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 "%1$s mensagens em resposta a mensagens de %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Mensagens públicas de %s" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s mensagens de todo mundo!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Método não implementado." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Repetida para %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Repetições de %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Mensagens etiquetadas como %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Mensagens etiquetadas como %1$s no %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "O método da API está em construção." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Não encontrado." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "O método da API não foi encontrado!" #: actions/attachment.php:73 msgid "No such attachment." @@ -1542,16 +1700,6 @@ msgstr "Este nome já está em uso. Tente outro." msgid "Description is required." msgstr "A descrição é obrigatória." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Descrição muito extensa (máximo %d caracteres)." -msgstr[1] "Descrição muito extensa (máximo %d caracteres)." - #. 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." @@ -1610,7 +1758,17 @@ msgstr "Você deve ser um administrador para editar o grupo." msgid "Use this form to edit the group." msgstr "Use esse formulário para editar o grupo." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Descrição muito extensa (máximo %d caracteres)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Muitos apelidos! O máximo são %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Apelido inválido: \"%s\"" @@ -2818,7 +2976,6 @@ msgstr "Nenhuma mensagem atual." #. TRANS: This is the title of the form for adding a new application. #: actions/newapplication.php:52 -#, fuzzy msgid "New application" msgstr "Nova aplicação" @@ -2857,11 +3014,6 @@ msgstr "Novo grupo" msgid "Use this form to create a new group." msgstr "Utilize este formulário para criar um novo grupo." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "descrição muito extensa (máximo %d caracteres)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Nova mensagem" @@ -8177,17 +8329,17 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "alguns segundos atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "cerca de 1 minuto atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8195,12 +8347,12 @@ msgstr[0] "um minuto" msgstr[1] "%d minutos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "cerca de 1 hora atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8208,12 +8360,12 @@ msgstr[0] "uma hora" msgstr[1] "%d horas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "cerca de 1 dia atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8221,12 +8373,12 @@ msgstr[0] "um dia" msgstr[1] "%d dias" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "cerca de 1 mês atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8234,7 +8386,7 @@ msgstr[0] "um mês" msgstr[1] "%d meses" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "cerca de 1 ano atrás" @@ -8281,19 +8433,3 @@ msgstr "Não foi especificado nenhum ID de usuário." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Nome completo muito extenso (máx. 255 caracteres)" - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Localização muito extensa (máx. 255 caracteres)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "" -#~ "Isso é muito extenso. O tamanho máximo das mensagens é %d caracteres." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "A descrição é muito extensa (máximo %d caracteres)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Descreva a si mesmo e os seus interesses em %d caracteres" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 548e079981..bab3e27b71 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -14,72 +14,73 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:28+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:35+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-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: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Доступ" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Настройки доступа к сайту" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Регистрация" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" "Запретить анонимным (не авторизовавшимся) пользователям просматривать сайт?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Личное" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Разрешить регистрацию только по приглашениям." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Только по приглашениям" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Отключить новые регистрации." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Закрыта" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" 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 to store form data in the Paths admin panel. @@ -87,7 +88,7 @@ msgstr "Сохранить настройки доступа" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -95,29 +96,45 @@ msgctxt "BUTTON" msgid "Save" 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 msgid "No such page." msgstr "Нет такой страницы." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -130,41 +147,42 @@ msgid "No such user." msgstr "Нет такого пользователя." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s и друзья, страница %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s и друзья" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Лента друзей %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Лента друзей %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Лента друзей %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -172,7 +190,7 @@ msgstr "Это лента %s и друзей, однако пока никто #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -181,9 +199,9 @@ msgstr "" "Попробуйте подписаться на большее число людей, [присоединитесь к группе](%%" "action.groups%%) или отправьте что-нибудь сами." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -194,7 +212,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -203,65 +221,80 @@ msgstr "" "Почему бы не [зарегистрироваться](%%%%action.register%%%%), чтобы " "«подтолкнуть» %s или оставить запись для них?" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Вы и друзья" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Обновлено от %1$s и его друзей на %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Этот метод требует POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -270,16 +303,19 @@ msgstr "" "none." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -294,8 +330,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -317,10 +353,12 @@ msgstr[2] "" #. 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -328,8 +366,9 @@ msgid "Unable to save your design settings." msgstr "Не удаётся сохранить ваши настройки оформления!" #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Не удаётся обновить ваше оформление." @@ -348,31 +387,31 @@ msgstr "Неудача при блокировке пользователя." msgid "Unblock user failed." msgstr "Неудача при разблокировке пользователя." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Прямые сообщения от %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Все прямые сообщения от %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Прямые сообщения для %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Все прямые сообщения посланные для %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Отсутствует текст сообщения!" @@ -409,7 +448,9 @@ msgid "" msgstr "Не посылайте сообщения сами себе; просто потихоньку скажите это себе." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Нет статуса с таким ID." @@ -425,47 +466,57 @@ msgstr "Этот статус уже входит в число любимых." msgid "Could not create favorite." msgstr "Не удаётся создать любимую запись." -#: actions/apifavoritedestroy.php:124 +#. 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 "Этот статус не входит в число ваших любимых." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Не удаётся удалить любимую запись." -#: actions/apifriendshipscreate.php:110 +#. 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 "Не удаётся следовать за пользователем: профиль не найден." -#: actions/apifriendshipscreate.php:119 +#. 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 "Не удается включить %s в список поддержки, он уже в Вашем списке." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "" "Не удаётся следовать за пользователем, т. к. такого пользователя не " "существует." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Вы не можете перестать следовать за собой." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "Необходимо задать два идентификатора или screen_names." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Не удаётся определить исходного пользователя." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Не удаётся найти целевого пользователя." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -474,7 +525,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -482,7 +533,7 @@ msgstr "Такое имя уже используется. Попробуйте #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -491,7 +542,7 @@ msgstr "Неверное имя." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -500,133 +551,168 @@ msgstr "URL Главной страницы неверен." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Полное имя слишком длинное (не больше 255 знаков)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Слишком длинное описание (максимум %d символов)" +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Слишком длинное описание (максимум %d символов)" +msgstr[1] "Слишком длинное описание (максимум %d символов)" +msgstr[2] "Слишком длинное описание (максимум %d символов)" +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Слишком длинное месторасположение (максимум 255 знаков)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Слишком много алиасов! Максимальное число — %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Слишком много алиасов! Максимальное число — %d." +msgstr[1] "Слишком много алиасов! Максимальное число — %d." +msgstr[2] "Слишком много алиасов! Максимальное число — %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Ошибочный псевдоним: «%s»." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Алиас «%s» уже используется. Попробуйте какой-нибудь другой." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Алиас не может совпадать с именем." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: 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: 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 "Вы заблокированы из этой группы администратором." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Не удаётся присоединить пользователя %1$s к группе %2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Вы не являетесь членом этой группы." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Не удаётся удалить пользователя %1$s из группы %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Группы %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "Группы %1$s, в которых состоит %2$s." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Группы %s" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "группы на %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Загрузка не удалась." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "Задан неверный ключ для входа." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "Не задан параметр oauth_token." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: 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:122 +#: actions/apioauthauthorize.php:121 #, fuzzy 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:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -651,7 +737,7 @@ msgid "Invalid nickname / password!" msgstr "Неверное имя или пароль." #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "Ошибка базы данных при добавлении пользователя приложения OAuth." @@ -662,7 +748,7 @@ msgstr "Ошибка базы данных при добавлении поль #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -672,19 +758,33 @@ 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:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Приложение хочет соединиться с вашей учётной записью" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: 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, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"Приложение %1$s от %2$s просит разрешение " +"на%3$s данных вашей учётной записи%4$s . Вы должны " +"предоставлять разрешение на доступ к вашей учётной записи %4$s только тем " +"сторонним приложениям, которым вы доверяете." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -697,14 +797,14 @@ msgstr "" "сторонним приложениям, которым вы доверяете." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 msgctxt "LEGEND" msgid "Account" msgstr "Аккаунт" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -714,7 +814,7 @@ msgstr "Имя" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Пароль" @@ -725,7 +825,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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -733,84 +833,106 @@ msgid "Cancel" msgstr "Отмена" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 msgctxt "BUTTON" msgid "Allow" msgstr "Разрешить" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "Разрешить или запретить доступ к информации вашей учётной записи." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: 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:563 +#: actions/apioauthauthorize.php:598 #, fuzzy, php-format msgid "The request token %s has been revoked." msgstr "Ключ запроса %s был запрещён и аннулирован." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Вы успешно авторизованы %s." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Вы успешно авторизованы %s." + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Этот метод требует POST или DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Вы не можете удалять статус других пользователей." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 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:541 msgid "Already repeated that notice." msgstr "Запись уже повторена." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Статус удалён." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Не найдено статуса с таким ID." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "Клиент должен предоставить параметр «status» со значением." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -819,12 +941,14 @@ msgstr[1] "Слишком длинная запись. Максимальная msgstr[2] "Слишком длинная запись. Максимальная длина — %d знаков." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "Метод API не найден." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -832,67 +956,103 @@ msgstr[0] "Максимальная длина записи — %d символ msgstr[1] "Максимальная длина записи — %d символов, включая URL вложения." msgstr[2] "Максимальная длина записи — %d символов, включая URL вложения." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Неподдерживаемый формат." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Любимое от %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "Обновления %1$s, отмеченные как любимые %2$s / %2$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %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 #, php-format msgid "%1$s / Updates mentioning %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 "%1$s обновил этот ответ на сообщение: %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Общая лента %s" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "Обновления %s от всех!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Нереализованный метод." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Повторено для %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Повторы за %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Записи с тегом %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Обновления с тегом %1$s на %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "Метод API реконструируется." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Не найдено." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "Метод API не найден." #: actions/attachment.php:73 msgid "No such attachment." @@ -1532,17 +1692,6 @@ msgstr "Такое имя уже используется. Попробуйте msgid "Description is required." msgstr "Описание обязательно." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Слишком длинное описание (максимум %d символов)" -msgstr[1] "Слишком длинное описание (максимум %d символов)" -msgstr[2] "Слишком длинное описание (максимум %d символов)" - #. 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." @@ -1601,7 +1750,17 @@ msgstr "Вы должны быть администратором, чтобы и msgid "Use this form to edit the group." msgstr "Заполните информацию о группе в следующие поля" -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Слишком длинное описание (максимум %d символов)" + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Слишком много алиасов! Максимальное число — %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Неверный алиас: «%s»" @@ -2817,7 +2976,6 @@ msgstr "Нет текущего состояния." #. TRANS: This is the title of the form for adding a new application. #: actions/newapplication.php:52 -#, fuzzy msgid "New application" msgstr "Новое приложение" @@ -2856,11 +3014,6 @@ msgstr "Новая группа" msgid "Use this form to create a new group." msgstr "Используйте эту форму для создания новой группы." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "Слишком длинное описание (максимум %d символов)" - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Новое сообщение" @@ -8160,17 +8313,17 @@ msgid "Moderator" msgstr "Модератор" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "пару секунд назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "около минуты назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8179,12 +8332,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "около часа назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8193,12 +8346,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "около дня назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8207,12 +8360,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "около месяца назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8221,7 +8374,7 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "около года назад" @@ -8272,18 +8425,3 @@ msgstr "Не указан идентификатор пользователя." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Полное имя слишком длинное (не больше 255 знаков)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Слишком длинное месторасположение (максимум 255 знаков)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Слишком длинно. Максимальная длина сообщения — %d знаков." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Слишком длинная биография (максимум %d символов)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Опишите себя и свои увлечения при помощи %d символов" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 7842652f09..aafae13c14 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: 2010-10-23 18:02+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,58 +17,59 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "" #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "" #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" 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 to store form data in the Paths admin panel. @@ -76,7 +77,7 @@ msgstr "" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -84,29 +85,45 @@ msgctxt "BUTTON" msgid "Save" 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 msgid "No such page." msgstr "" +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -119,41 +136,42 @@ msgid "No such user." msgstr "" #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -161,16 +179,16 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -179,88 +197,106 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to them." msgstr "" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "" #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "" #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -275,8 +311,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -291,10 +327,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -302,8 +340,9 @@ msgid "Unable to save your design settings." msgstr "" #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "" @@ -322,31 +361,31 @@ msgstr "" msgid "Unblock user failed." msgstr "" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "" @@ -379,7 +418,9 @@ msgid "" msgstr "" #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "" @@ -395,45 +436,55 @@ msgstr "" msgid "Could not create favorite." msgstr "" -#: actions/apifavoritedestroy.php:124 +#. 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 "" -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "" -#: actions/apifriendshipscreate.php:110 +#. 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 "" -#: actions/apifriendshipscreate.php:119 +#. 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 "" -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "" +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "" -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "" -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "" -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "" #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -441,7 +492,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -449,7 +500,7 @@ msgstr "" #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -458,7 +509,7 @@ msgstr "" #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -467,129 +518,162 @@ msgstr "" #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 msgid "Full name is too long (maximum 255 characters)." msgstr "" -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 #, php-format -msgid "Description is too long (max %d chars)." -msgstr "" +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "" +msgstr[1] "" +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 msgid "Location is too long (maximum 255 characters)." msgstr "" -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 #, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "" +msgstr[1] "" -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "" -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "" -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: 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: 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 "" +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "" -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "" +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "" -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "" -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "" #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: 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:108 +#: 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:116 actions/apioauthauthorize.php:130 +#: 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:122 +#: 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:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -614,7 +698,7 @@ msgid "Invalid nickname / password!" msgstr "" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 msgid "Database error inserting oauth_token_association." msgstr "" @@ -624,7 +708,7 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -634,19 +718,29 @@ 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:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: 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, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -655,14 +749,14 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 msgctxt "LEGEND" msgid "Account" msgstr "" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -672,7 +766,7 @@ msgstr "" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "" @@ -683,7 +777,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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -691,83 +785,104 @@ msgid "Cancel" msgstr "" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 msgctxt "BUTTON" msgid "Allow" msgstr "" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: 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:559 +#: 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:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, php-format -msgid "You have successfully authorized %s." +#. 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: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "" -#: actions/apistatusesdestroy.php:135 +#. 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 "" -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 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:541 msgid "Already repeated that notice." msgstr "" -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "" -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, 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." @@ -775,77 +890,114 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 msgid "Parent notice not found." msgstr "" -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, 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] "" msgstr[1] "" -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "" -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "" -#: actions/apitimelinefavorites.php:119 +#. 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 / %2$s." +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "" -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, php-format +msgid "Could not generate feed for group - %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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "" +#. 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 "" -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +msgid "Unimplemented." +msgstr "" + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "" -#: actions/apiusershow.php:96 -msgid "Not found." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." msgstr "" #: actions/attachment.php:73 @@ -1464,16 +1616,6 @@ msgstr "" msgid "Description is required." msgstr "" -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "" -msgstr[1] "" - #. 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." @@ -1531,7 +1673,17 @@ msgstr "" msgid "Use this form to edit the group." msgstr "" -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "" + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "" @@ -2683,11 +2835,6 @@ msgstr "" msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "" - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "" @@ -7609,17 +7756,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7627,12 +7774,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7640,12 +7787,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7653,12 +7800,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7666,7 +7813,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 1d35fac015..48da6d8d0f 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -11,71 +11,72 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:29+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:37+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\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: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Åtkomst" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Inställningar för webbplatsåtkomst" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Registrering" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" "Skall anonyma användare (inte inloggade) förhindras från att se webbplatsen?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Privat" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Gör så att registrering endast sker genom inbjudan." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Endast inbjudan" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Inaktivera nya registreringar." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Stängd" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 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 label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text to store form data in the Paths admin panel. @@ -83,7 +84,7 @@ msgstr "Spara inställningar för åtkomst" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -91,29 +92,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Spara" +#. 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 msgid "No such page." msgstr "Ingen sådan sida" +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -126,41 +143,42 @@ msgid "No such user." msgstr "Ingen sådan användare." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s och vänner, sida %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s och vänner" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Flöden för %ss vänner (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Flöden för %ss vänner (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Flöden för %ss vänner (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -168,7 +186,7 @@ msgstr "Detta är tidslinjen för %s och vänner, men ingen har skrivit något #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -177,9 +195,9 @@ msgstr "" "Prova att prenumerera på fler personer, [gå med i en grupp](%%action.groups%" "%) eller skriv något själv." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -190,7 +208,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -199,81 +217,99 @@ msgstr "" "Varför inte [registrera ett konto](%%action.register%%) och bli först att " "posta en!" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Du och vänner" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Uppdateringar från %1$s och vänner på %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." msgstr "API-metod hittades inte." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Denna metod kräver en POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "Du måste ange ett värdet på parametern 'device': sms, im, none" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." msgstr "Kunde inte uppdatera användare." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -288,8 +324,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -308,10 +344,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -319,8 +357,9 @@ msgid "Unable to save your design settings." msgstr "Kunde inte spara dina utseendeinställningar." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Kunde inte uppdatera din profils utseende." @@ -339,31 +378,31 @@ msgstr "Blockering av användare misslyckades." msgid "Unblock user failed." msgstr "Hävning av blockering av användare misslyckades." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Direktmeddelanden från %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Alla direktmeddelanden skickade från %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Direktmeddelande till %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Alla direktmeddelanden skickade till %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Ingen meddelandetext!" @@ -399,7 +438,9 @@ msgstr "" "istället." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Ingen status hittad med det ID:t." @@ -415,45 +456,55 @@ msgstr "Denna status är redan en favorit." msgid "Could not create favorite." msgstr "Kunde inte skapa favorit." -#: actions/apifavoritedestroy.php:124 +#. 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 "Denna status är inte en favorit." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Kunde inte ta bort favoriten." -#: actions/apifriendshipscreate.php:110 +#. 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 "Kunde inte sluta följa användaren: användaren hittades inte." -#: actions/apifriendshipscreate.php:119 +#. 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 "Kunde inte följa användare: %s finns redan i din lista." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Kunde inte sluta följa användaren: användaren hittades inte." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Du kan inte sluta följa dig själv." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "Två giltiga användar-ID:n eller screen_names måste tillhandahållas." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Kunde inte fastställa användare hos källan." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Kunde inte hitta målanvändare." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -462,7 +513,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -470,7 +521,7 @@ msgstr "Smeknamnet används redan. Försök med ett annat." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -479,7 +530,7 @@ msgstr "Inte ett giltigt smeknamn." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -488,134 +539,167 @@ msgstr "Hemsida är inte en giltig webbadress." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Fullständigt namn är för långt (max 255 tecken)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Beskrivning är för lång (max %d tecken)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Beskrivning är för lång (max %d tecken)." +msgstr[1] "Beskrivning är för lång (max %d tecken)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Beskrivning av plats är för lång (max 255 tecken)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "För många alias! Maximum %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "För många alias! Maximum %d." +msgstr[1] "För många alias! Maximum %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Ogiltigt alias: \"%s\"." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" används redan. Försök med ett annat." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Alias kan inte vara samma som smeknamn." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Grupp hittades inte." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Du är redan en medlem i denna grupp." +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "Du har blivit blockerad från denna grupp av administratören." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Kunde inte ansluta användare %1$s till grupp %2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Du är inte en medlem i denna grupp." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Kunde inte ta bort användare %1$s från grupp %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "%ss grupper" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "%1$s grupper %2$s är en medlem i." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s grupper" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "grupper på %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Uppladdning misslyckades." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "Ogiltig inloggnings-token angiven." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "Ingen oauth_token-parameter angiven." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Ogiltig token." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "Du har inte tillstånd." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -640,7 +724,7 @@ msgid "Invalid nickname / password!" msgstr "Ogiltigt smeknamn / lösenord!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "Databasfel vid infogning av OAuth-applikationsanvändare." @@ -651,7 +735,7 @@ msgstr "Databasfel vid infogning av OAuth-applikationsanvändare." #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -661,19 +745,32 @@ msgid "Unexpected form submission." msgstr "Oväntat inskick av formulär." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "En applikation skulle vilja ansluta till ditt konto" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Tillåt eller neka åtkomst" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"Applikationen %1$s av %2$s vill att " +"möjligheten att %3$s din %4$s kontoinformation. Du bör bara " +"ge tillgång till ditt %4$s-konto till tredje-parter du litar på." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -685,7 +782,7 @@ msgstr "" "ge tillgång till ditt %4$s-konto till tredje-parter du litar på." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -693,7 +790,7 @@ msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -703,7 +800,7 @@ msgstr "Smeknamn" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Lösenord" @@ -714,7 +811,7 @@ msgstr "Lösenord" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -722,86 +819,108 @@ msgid "Cancel" msgstr "Avbryt" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "Tillåt" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "Tillåt eller neka åtkomst till din kontoinformation." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "Bekräftelse för snabbmeddelanden avbruten." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, fuzzy, php-format msgid "The request token %s has been revoked." msgstr "Begäran-token %s har nekats och återkallats." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Du har inte tillstånd." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Du har inte tillstånd." + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "Denna metod kräver en POST eller en DELETE." -#: actions/apistatusesdestroy.php:135 +#. 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 "Du kan inte ta bort en annan användares status." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Ingen sådan notis." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Kan inte upprepa din egen notis." +#. 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:541 msgid "Already repeated that notice." msgstr "Redan upprepat denna notis." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Status borttagen." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Ingen status med det ID:t hittades." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "Klient måste tillhandahålla en 'status'-parameter med ett värde." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -809,79 +928,117 @@ msgstr[0] "Det är för långt. Maximal notisstorlek är %d tecken." msgstr[1] "Det är för långt. Maximal notisstorlek är %d tecken." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "API-metod hittades inte." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, 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] "Maximal notisstorlek är %d tecken, inklusive webbadress för bilaga." msgstr[1] "Maximal notisstorlek är %d tecken, inklusive webbadress för bilaga." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Format som inte stödjs." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Favoriter från %2$s" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s uppdateringar markerade som favorit av %2$s / %2$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Kunde inte uppdatera grupp." + +#. 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 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Uppdateringar som nämner %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 "%1$s uppdateringar med svar på uppdatering från %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s publika tidslinje" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s uppdateringar från alla!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "Inte implementerad metod." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Upprepat till %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Upprepningar av %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Notiser taggade med %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Uppdateringar taggade med %1$s på %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "API-metoden är under uppbyggnad." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Hittades inte." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "API-metod hittades inte." #: actions/attachment.php:73 msgid "No such attachment." @@ -1524,16 +1681,6 @@ msgstr "Namnet används redan. Prova ett annat." msgid "Description is required." msgstr "Beskrivning krävs." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Beskrivning är för lång (max %d tecken)." -msgstr[1] "Beskrivning är för lång (max %d tecken)." - #. 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." @@ -1592,7 +1739,17 @@ msgstr "Du måste vara en administratör för att redigera gruppen." msgid "Use this form to edit the group." msgstr "Använd detta formulär för att redigera gruppen." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Beskrivning är för lång (max %d tecken)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "För många alias! Maximum %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Ogiltigt alias: \"%s\"" @@ -2791,7 +2948,6 @@ msgstr "Ingen aktuell status." #. TRANS: This is the title of the form for adding a new application. #: actions/newapplication.php:52 -#, fuzzy msgid "New application" msgstr "Ny applikation" @@ -2830,11 +2986,6 @@ msgstr "Ny grupp" msgid "Use this form to create a new group." msgstr "Använd detta formulär för att skapa en ny grupp." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "beskrivning är för lång (max %d tecken)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Nytt meddelande" @@ -8120,17 +8271,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "ett par sekunder sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "för nån minut sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8138,12 +8289,12 @@ msgstr[0] "för ungefär en minut sedan" msgstr[1] "för ungefär %d minuter sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "för en timma sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8151,12 +8302,12 @@ msgstr[0] "för ungefär en timma sedan" msgstr[1] "för ungefär %d timmar sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "för en dag sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8164,12 +8315,12 @@ msgstr[0] "för ungefär en dag sedan" msgstr[1] "för ungefär %d dagar sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "för en månad sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8177,7 +8328,7 @@ msgstr[0] "för ungefär en månad sedan" msgstr[1] "för ungefär %d månader sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "för ett år sedan" @@ -8222,18 +8373,3 @@ msgstr "Ingen användar-ID angiven." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Fullständigt namn är för långt (max 255 tecken)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Beskrivning av plats är för lång (max 255 tecken)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Detta är för långt. Maximal meddelandestorlek är %d tecken." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Biografin är för lång (max %d tecken)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Beskriv dig själv och dina intressen med högst 140 tecken" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index ab8be346b3..287168c08f 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,70 +10,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:30+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:39+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\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: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "అందుబాటు" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "సైటు అందుబాటు అమరికలు" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "నమోదు" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "అజ్ఞాత (ప్రవేశించని) వాడుకరులని సైటుని చూడకుండా నిషేధించాలా?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "అంతరంగికం" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "ఆహ్వానితులు మాత్రమే నమోదు అవ్వగలిగేలా చెయ్యి." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "ఆహ్వానితులకు మాత్రమే" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "కొత్త నమోదులను అచేతనంచేయి." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "మూసివేయబడింది" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" 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 to store form data in the Paths admin panel. @@ -81,7 +82,7 @@ msgstr "అందుబాటు అమరికలను భద్రపరచ #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -89,29 +90,45 @@ msgctxt "BUTTON" msgid "Save" 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 msgid "No such page." msgstr "అటువంటి పేజీ లేదు." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -124,41 +141,42 @@ msgid "No such user." msgstr "అటువంటి వాడుకరి లేరు." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s మరియు మిత్రులు, పేజీ %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s మరియు మిత్రులు" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s యొక్క మిత్రుల ఫీడు (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s యొక్క మిత్రుల ఫీడు (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "%s యొక్క మిత్రుల ఫీడు (ఆటమ్)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -166,16 +184,16 @@ msgstr "ఇది %s మరియు మిత్రుల కాలరేఖ #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: 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: %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:149 +#: actions/all.php:150 #, fuzzy, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -185,90 +203,108 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, fuzzy, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to them." msgstr "[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మీరే మొదట వ్రాసేవారు ఎందుకు కాకూడదు!" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "మీరు మరియు మీ స్నేహితులు" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$sలో %1$s మరియు స్నేహితుల నుండి తాజాకరణలు!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 #, fuzzy msgid "API method not found." msgstr "నిర్ధారణ సంకేతం కనబడలేదు." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "" #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 #, fuzzy msgid "Could not update user." 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -284,8 +320,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -300,10 +336,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -311,8 +349,9 @@ msgid "Unable to save your design settings." msgstr "మీ రూపురేఖల అమరికలని భద్రపరచలేకున్నాం." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. 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 "వాడుకరిని తాజాకరించలేకున్నాం." @@ -333,31 +372,31 @@ msgstr "వాడుకరి నిరోధం విఫలమైంది." msgid "Unblock user failed." msgstr "వాడుకరి నిరోధం విఫలమైంది." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "%s నుండి నేరు సందేశాలు" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "%s నుండి పంపిన అన్ని నేరు సందేశాలు" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "%s కి నేరు సందేశాలు" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "%sకి పంపిన అన్ని నేరు సందేశాలు" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "సందేశపు పాఠ్యం లేదు!" @@ -391,7 +430,9 @@ msgid "" msgstr "మీకు మీరే సందేశాన్ని పంపుకోకండి; దాని బదులు మీలో మీరే మెల్లగా చెప్పుకోండి." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "ఆ IDతో ఏ నోటీసూ కనబడలేదు." @@ -407,45 +448,55 @@ msgstr "ఈ నోటీసు ఇప్పటికే మీ ఇష్టా msgid "Could not create favorite." msgstr "ఇష్టాంశాన్ని సృష్టించలేకపోయాం." -#: actions/apifavoritedestroy.php:124 +#. 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 "ఆ నోటీసు ఇష్టాంశం కాదు." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "ఇష్టాంశాన్ని తొలగించలేకపోయాం." -#: actions/apifriendshipscreate.php:110 +#. 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 "వాడుకరిని అనుసరించలేకపోయాం: %s ఇప్పటికే మీ జాబితాలో ఉన్నారు." -#: actions/apifriendshipscreate.php:119 +#. 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 "వాడుకరిని అనుసరించలేకపోయాం: %s ఇప్పటికే మీ జాబితాలో ఉన్నారు." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "వాడుకరిని అనుసరించలేకపోయాం: %s ఇప్పటికే మీ జాబితాలో ఉన్నారు." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "మిమ్మల్ని మీరే అననుసరించలేరు." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "" -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "లక్ష్యిత వాడుకరిని కనుగొనలేకపోయాం." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "లక్ష్యిత వాడుకరిని కనుగొనలేకపోయాం." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -453,7 +504,7 @@ msgstr "పేరులో చిన్నబడి అక్షరాలు మ #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -461,7 +512,7 @@ msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్ #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -470,7 +521,7 @@ msgstr "సరైన పేరు కాదు." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -479,134 +530,167 @@ msgstr "హోమ్ పేజీ URL సరైనది కాదు." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "పూర్తి పేరు చాలా పెద్దగా ఉంది (గరిష్ఠంగా 255 అక్షరాలు)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "వివరణ చాలా పెద్దగా ఉంది (%d అక్షరాలు గరిష్ఠం)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "వివరణ చాలా పెద్దగా ఉంది (%d అక్షరాలు గరిష్ఠం)." +msgstr[1] "వివరణ చాలా పెద్దగా ఉంది (%d అక్షరాలు గరిష్ఠం)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "చాలా మారుపేర్లు! %d గరిష్ఠం." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "చాలా మారుపేర్లు! %d గరిష్ఠం." +msgstr[1] "చాలా మారుపేర్లు! %d గరిష్ఠం." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "తప్పుడు మారుపేరు: \"%s\"." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "\"%s\" అన్న మారుపేరుని ఇప్పటికే వాడుతున్నారు. మరొకటి ప్రయత్నించండి." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "మారుపేరు పేరుతో సమానంగా ఉండకూడదు." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: 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: 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 "నిర్వాహకులు ఆ గుంపు నుండి మిమ్మల్ని నిరోధించారు." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "వాడుకరి %1$sని %2$s గుంపులో చేర్చలేకపోయాం" -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "మీరు ఈ గుంపులో సభ్యులు కాదు." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "వాడుకరి %1$sని %2$s గుంపు నుండి తొలగించలేకపోయాం." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "%s యొక్క గుంపులు" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "%2$s సభ్యులుగా ఉన్న %2$s గుంపులు." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s గుంపులు" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "%s పై గుంపులు" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "ఎక్కింపు విఫలమైంది." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "సందేశపు విషయం సరైనది కాదు" #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: 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:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "తప్పుడు పాత్ర." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy 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:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -631,7 +715,7 @@ msgid "Invalid nickname / password!" msgstr "తప్పుడు పేరు / సంకేతపదం!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు" @@ -642,7 +726,7 @@ msgstr "అవతారాన్ని పెట్టడంలో పొరప #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -652,19 +736,29 @@ 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:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "ఒక ఉపకరణం మీ ఖాతాకి అనుసంధానమవ్వాలనుకుంటూంది." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: 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, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -673,14 +767,14 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 msgctxt "LEGEND" msgid "Account" msgstr "ఖాతా" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -690,7 +784,7 @@ msgstr "పేరు" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "సంకేతపదం" @@ -701,7 +795,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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -709,84 +803,106 @@ msgid "Cancel" msgstr "రద్దుచేయి" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 msgctxt "BUTTON" msgid "Allow" msgstr "అనుమతించు" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "మీ ఖాతా సమాచారాన్ని సంప్రాపించడానికి అనుమతించండి లేదా నిరాకరించండి." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: 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:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "మీకు అధీకరణ లేదు." -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "" -#: actions/apistatusesdestroy.php:135 +#. 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 "ఇతర వాడుకరుల స్థితిని మీరు తొలగించలేరు." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 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:541 msgid "Already repeated that notice." msgstr "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "స్థితిని తొలగించాం." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "ఆ IDతో ఏ నోటీసు కనబడలేదు." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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." @@ -794,80 +910,118 @@ msgstr[0] "అది చాలా పొడవుంది. గరిష్ఠ msgstr[1] "అది చాలా పొడవుంది. గరిష్ఠ నోటీసు పరిమాణం %d అక్షరాలు." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "నిర్ధారణ సంకేతం కనబడలేదు." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, 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] "గరిష్ఠ నోటీసు పొడవు %d అక్షరాలు, జోడింపు URLని కలుపుకుని." msgstr[1] "గరిష్ఠ నోటీసు పొడవు %d అక్షరాలు, జోడింపు URLని కలుపుకుని." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "" -#: actions/apitimelinefavorites.php:110 -#, fuzzy, php-format +#. 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 +#, php-format msgid "%1$s / Favorites from %2$s" -msgstr "%1$s %2$s గుంపులో చేరారు" +msgstr "%1$s / %2$s యొక్క ఇష్టాంశాలు" -#: actions/apitimelinefavorites.php:119 +#. 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 #, fuzzy, php-format -msgid "%1$s updates favorited by %2$s / %2$s." +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%s యొక్క మైక్రోబ్లాగు" -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %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 #, php-format msgid "%1$s / Updates mentioning %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 "" -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s బహిరంగ కాలరేఖ" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "అందరి నుండి %s తాజాకరణలు!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "క్షమించండి, ఈ ఆదేశం ఇంకా అమలుపరచబడలేదు." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "%s యొక్క పునరావృతం" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "%s యొక్క పునరావృతాలు" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, fuzzy, php-format msgid "Notices tagged with %s" msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 #, fuzzy msgid "API method under construction." msgstr "నిర్ధారణ సంకేతం కనబడలేదు." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "కనబడలేదు." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "వాడుకరి దొరకలేదు." #: actions/attachment.php:73 msgid "No such attachment." @@ -1228,9 +1382,8 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -#, fuzzy msgid "Do not delete this group" -msgstr "ఈ నోటీసుని తొలగించకు" +msgstr "ఈ గుంపును తొలగించకు" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 @@ -1506,16 +1659,6 @@ msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్ msgid "Description is required." msgstr "వివరణ తప్పనిసరి." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "వివరణ చాలా పెద్దగా ఉంది (%d అక్షరాలు గరిష్ఠం)." -msgstr[1] "వివరణ చాలా పెద్దగా ఉంది (%d అక్షరాలు గరిష్ఠం)." - #. 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." @@ -1576,7 +1719,17 @@ msgstr "గుంపుని మార్చడానికి మీరు న msgid "Use this form to edit the group." msgstr "గుంపుని మార్చడానికి ఈ ఫారాన్ని ఉపయోగించండి." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "వివరణ చాలా పెద్దగా ఉంది (%d అక్షరాలు గరిష్ఠం)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "చాలా మారుపేర్లు! %d గరిష్ఠం." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "తప్పుడు మారుపేరు: \"%s\"" @@ -2755,7 +2908,6 @@ msgstr "ప్రస్తుత స్థితి ఏమీ లేదు." #. TRANS: This is the title of the form for adding a new application. #: actions/newapplication.php:52 -#, fuzzy msgid "New application" msgstr "కొత్త ఉపకరణం" @@ -2769,7 +2921,6 @@ msgid "Use this form to register a new application." msgstr "కొత్త ఉపకరణాన్ని నమోదుచేసుకోడానికి ఈ ఫారాన్ని ఉపయోగించండి." #: actions/newapplication.php:169 -#, fuzzy msgid "Name is too long (maximum 255 chars)." msgstr "పేరు చాలా పెద్దగా ఉంది (గరిష్ఠంగా 255 అక్షరాలు)." @@ -2795,11 +2946,6 @@ msgstr "కొత్త గుంపు" msgid "Use this form to create a new group." msgstr "కొత్త గుంపుని సృష్టిండానికి ఈ ఫారాన్ని ఉపయోగించండి." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "వివరణ చాలా పెద్దదిగా ఉంది (140 అక్షరాలు గరిష్ఠం)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "కొత్త సందేశం" @@ -8000,17 +8146,17 @@ msgid "Moderator" msgstr "సమన్వయకర్త" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "కొన్ని క్షణాల క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "ఓ నిమిషం క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8018,12 +8164,12 @@ msgstr[0] "సుమారు ఒక నిమిషం క్రితం" msgstr[1] "సుమారు %d నిమిషాల క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "ఒక గంట క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8031,12 +8177,12 @@ msgstr[0] "ఒక గంట" msgstr[1] "%d గంటల" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "ఓ రోజు క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8044,12 +8190,12 @@ msgstr[0] "ఒక రోజు" msgstr[1] "%d రోజుల" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "ఓ నెల క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8057,7 +8203,7 @@ msgstr[0] "ఒక నెల" msgstr[1] "%d నెలల" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "ఒక సంవత్సరం క్రితం" @@ -8102,18 +8248,3 @@ msgstr "గుంపు ఏమీ పేర్కొనలేదు." #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "పూర్తి పేరు చాలా పెద్దగా ఉంది (గరిష్ఠంగా 255 అక్షరాలు)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం %d అక్షరాలు." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (%d అక్షరాలు గరిష్ఠం)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి %d అక్షరాల్లో చెప్పండి" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 548976ac75..b96a6da1bc 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -11,71 +11,72 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:31+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:40+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Erişim" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Profil ayarları" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Kayıt" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" "Anonim kullanıcıların (giriş yapmayanların) siteyi görmesi engellensin mi?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Özel" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Sadece kayıt daveti yap." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Sadece davet" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Yeni kayıtları devre dışı bırak." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Kapalı" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" msgstr "Erişim ayarlarını kaydet" +#. 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 to store form data in the Paths admin panel. @@ -83,7 +84,7 @@ msgstr "Erişim ayarlarını kaydet" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -91,29 +92,45 @@ msgctxt "BUTTON" msgid "Save" msgstr "Kaydet" +#. 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 msgid "No such page." msgstr "Böyle bir kullanıcı yok." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -126,41 +143,42 @@ msgid "No such user." msgstr "Böyle bir kullanıcı yok." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s ve arkadaşları, sayfa %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s ve arkadaşları" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s ve arkadaşları için besleme (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s ve arkadaşları için besleme (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "%s ve arkadaşları için besleme (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -170,7 +188,7 @@ msgstr "" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -179,9 +197,9 @@ msgstr "" "Daha fazla kişiye abone olmayı deneyin, [bir gruba katılın](%%action.groups%" "%) veya kendiniz bir şeyler yazın." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -193,7 +211,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -202,66 +220,81 @@ msgstr "" "Neden bir [hesap oluşturup](%%%%action.register%%%%) sonrasında %s " "kullanıcısını dürtmüyor veya onlara durum mesajı yazmıyorsunuz." -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Sen ve arkadaşların" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s üzerindeki %1$s ve arkadaşlarından güncellemeler!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 #, fuzzy msgid "API method not found." msgstr "Onay kodu bulunamadı." #. 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Bu yöntem bir POST gerektirir." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -270,17 +303,20 @@ msgstr "" "belirtmelisiniz." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 #, fuzzy msgid "Could not update user." msgstr "Kullanıcı güncellenemedi." #. 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -296,8 +332,8 @@ msgstr "Profil kaydedilemedi." #. 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -313,10 +349,12 @@ 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -324,8 +362,9 @@ msgid "Unable to save your design settings." msgstr "Dizayn ayarlarınız kaydedilemedi." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. 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 "Kullanıcı güncellenemedi." @@ -345,31 +384,31 @@ msgstr "Kullanıcıyı engelleme başarısız oldu." msgid "Unblock user failed." msgstr "Kullanıcının engellemesini kaldırma başarısız oldu." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "%s kullanıcısından özel mesajlar" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "%s tarafından gönderilmiş tüm özel mesajlar" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "%s kullanıcısına özel mesaj" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "%s kullanıcısına gönderilmiş tüm özel mesajlar" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Mesaj metni yok!" @@ -401,7 +440,9 @@ msgid "" msgstr "" #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Bu ID'ye sahip durum mesajı bulunamadı." @@ -417,45 +458,55 @@ msgstr "Bu durum mesajı zaten bir favori." msgid "Could not create favorite." msgstr "Favori oluşturulamadı." -#: actions/apifavoritedestroy.php:124 +#. 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 "Bu durum mesajı bir favori değil." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Favori silinemedi." -#: actions/apifriendshipscreate.php:110 +#. 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 "Profil kaydedilemedi." -#: actions/apifriendshipscreate.php:119 +#. 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 "Kullanıcı izlenemiyor: %s zaten listenizde." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Kullanıcı izlemesi bırakılamıyor: Kullanıcı bulunamadı." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Kendinizi izlemeyi bırakamazsınız." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "İki geçerli ID ya da screen_names verilmelidir." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Kaynak kullanıcı belirlenemedi." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Hedef kullanıcı bulunamadı." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -465,7 +516,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -473,7 +524,7 @@ msgstr "Takma ad kullanımda. Başka bir tane deneyin." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -482,7 +533,7 @@ msgstr "Geçersiz bir takma ad." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -491,134 +542,165 @@ msgstr "Başlangıç sayfası adresi geçerli bir URL değil." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Tam isim çok uzun (azm: 255 karakter)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Yer bilgisi çok uzun (azm: %d karakter)." +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Yer bilgisi çok uzun (azm: %d karakter)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Çok fazla diğerisim! En fazla %d." +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Çok fazla diğerisim! En fazla %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Geçersiz büyüklük." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Diğerisim \"%s\" kullanımda. Başka bir tane deneyin." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Diğerisim, kullanıcı adı ile aynı olamaz." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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 "Onay kodu bulunamadı." +#. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Bize o profili yollamadınız" +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. #. 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 "Bu gruptan yönetici tarafından engellendiniz." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "%1$s kullanıcısı, %2$s grubuna katılamadı." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Bu grubun bir üyesi değilsiniz." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "%1$s kullanıcısı, %2$s grubundan silinemedi." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "%s kullanıcısının grupları" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "%2$s kullanıcısının üye olduğu %1$s grupları." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s grupları" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "%s üzerindeki gruplar" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Yükleme başarısız." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "Geçersiz durum mesajı" #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "Hiçbir oauth_token parametresi sağlanmıyor." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "Geçersiz belirteç." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy msgid "Request token already authorized." msgstr "Takip talebine izin verildi" +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -643,7 +725,7 @@ msgid "Invalid nickname / password!" msgstr "Geçersiz kullanıcı adı / parola!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "OAuth uygulama kullanıcısı eklerken veritabanı hatası." @@ -654,7 +736,7 @@ msgstr "OAuth uygulama kullanıcısı eklerken veritabanı hatası." #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -664,19 +746,33 @@ msgid "Unexpected form submission." msgstr "Beklenmeğen form girdisi." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Bir uygulama hesabınıza bağlanmak istiyor" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "Erişime izin verin ya da erişimi engelleyin" +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"%2$s tarafından sunulan %1$s uygulaması, %4" +"$s hesap verileriniz üzerinde şunları yapmak istiyor: %3$s. " +"%4$s hesabınıza erişmek için yalnızca güvendiğiniz üçüncü şahıslara izin " +"vermelisiniz." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -689,7 +785,7 @@ msgstr "" "vermelisiniz." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -697,7 +793,7 @@ msgstr "Hesap" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -707,7 +803,7 @@ msgstr "Takma ad" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Parola" @@ -718,7 +814,7 @@ msgstr "Parola" #. 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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -726,165 +822,226 @@ msgid "Cancel" msgstr "İptal" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "İzin Ver" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "Hesap bilgilerinize erişim için izin verin ya da erişimi reddedin." #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "Onay kodu yok." #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, fuzzy, php-format msgid "The request token %s has been revoked." msgstr "İstek belirteci %s, reddedildi ve iptal edildi." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "Takip talebine izin verildi" -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, php-format +msgid "You have successfully authorized %s" +msgstr "Takip talebine izin verildi" + +#. 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 " Bu yöntem bir POST veya DELETE gerektirir." -#: actions/apistatusesdestroy.php:135 +#. 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 "Başka bir kullanıcının durum mesajını silemezsiniz." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Böyle bir durum mesajı yok." +#. 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Kendi durum mesajınızı tekrarlayamazsınız." +#. 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:541 msgid "Already repeated that notice." msgstr "Bu durum mesajı zaten tekrarlanmış." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Durum silindi." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Bu ID'li bir durum mesajı bulunamadı." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "İstemci, bir değere sahip 'status' parametresi sağlamalı." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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] "Bu çok uzun. Maksimum durum mesajı boyutu %d karakterdir." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "Onay kodu bulunamadı." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, 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] "" "Maksimum durum mesajı boyutu, eklenti bağlantıları dahil %d karakterdir." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Desteklenmeyen biçim." -#: actions/apitimelinefavorites.php:110 +#. 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 msgid "%1$s / Favorites from %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " -#: actions/apitimelinefavorites.php:119 +#. 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 #, fuzzy, php-format -msgid "%1$s updates favorited by %2$s / %2$s." +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%s adli kullanicinin durum mesajlari" -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %s" +msgstr "Grup güncellenemedi." + +#. 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 msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " +#. 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 "" -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s genel zaman çizelgesi" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "showForm() gerçeklenmemiş." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, fuzzy, php-format msgid "Repeated to %s" msgstr "%s için cevaplar" -#: actions/apitimelineretweetsofme.php:114 +#. 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 msgid "Repeats of %s" msgstr "%s için cevaplar" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "%s ile etiketli durum mesajları" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 msgid "Updates tagged with %1$s on %2$s!" msgstr "%s adli kullanicinin durum mesajlari" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "UPA metodu yapım aşamasında." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Bulunamadı." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +#, fuzzy +msgid "User not found." +msgstr "Onay kodu bulunamadı." #: actions/attachment.php:73 msgid "No such attachment." @@ -1529,15 +1686,6 @@ msgstr "İsim halihazırda kullanımda. Başka bir tane deneyin." msgid "Description is required." msgstr "Abonelik reddedildi." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Yer bilgisi çok uzun (azm: %d karakter)." - #. 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." @@ -1596,7 +1744,17 @@ msgstr "Bir grubu düzenlemek için bir yönetici olmalısınız." msgid "Use this form to edit the group." msgstr "Grubu düzenlemek için bu biçimi kullan." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Yer bilgisi çok uzun (azm: %d karakter)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Çok fazla diğerisim! En fazla %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "%s Geçersiz başlangıç sayfası" @@ -2802,11 +2960,6 @@ msgstr "Yeni grup" msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Yeni mesaj" @@ -7945,60 +8098,60 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "birkaç saniye önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "yaklaşık bir dakika önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "yaklaşık bir saat önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "yaklaşık bir gün önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "yaklaşık bir ay önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "yaklaşık bir yıl önce" @@ -8042,19 +8195,3 @@ msgstr "Yeni durum mesajı" #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Tam isim çok uzun (azm: 255 karakter)." - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Bu çok uzun. Maksimum mesaj boyutu %d karakterdir." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Yer bilgisi çok uzun (azm: %d karakter)." - -#, fuzzy -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 714c416ab6..d707e13ac1 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,73 +12,74 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:33+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:42+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-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: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "Погодитись" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "Параметри доступу на сайт" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "Реєстрація" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" "Заборонити анонімним відвідувачам (ті, що не увійшли до системи) переглядати " "сайт?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "Приватно" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "Зробити реєстрацію лише за запрошеннями." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "Лише за запрошеннями" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "Скасувати подальшу реєстрацію." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "Закрито" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" 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 to store form data in the Paths admin panel. @@ -86,7 +87,7 @@ msgstr "Зберегти параметри доступу" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -94,29 +95,45 @@ msgctxt "BUTTON" msgid "Save" 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 msgid "No such page." msgstr "Немає такої сторінки." +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -129,41 +146,42 @@ msgid "No such user." msgstr "Такого користувача немає." #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s та друзі, сторінка %2$d" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s з друзями" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Стрічка дописів для друзів %s (RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Стрічка дописів для друзів %s (RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Стрічка дописів для друзів %s (Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -171,7 +189,7 @@ msgstr "Це стрічка дописів %s і друзів, але вона #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -180,9 +198,9 @@ msgstr "" "Спробуйте до когось підписатись, приєднатись [до спільноти](%%action.groups%" "%) або напишіть щось самі." -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -193,7 +211,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -202,65 +220,80 @@ msgstr "" "Чому б не [зареєструватись](%%%%action.register%%%%) і не спробувати " "«розштовхати» %s або щось йому написати." -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "Ви з друзями" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Оновлення від %1$s та друзів на %2$s!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "Цей метод потребує POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -268,16 +301,19 @@ msgstr "" "Ви мусите встановити параметр «device» з одним зі значень: sms, im, none." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -292,8 +328,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -315,10 +351,12 @@ msgstr[2] "" #. 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -326,8 +364,9 @@ msgid "Unable to save your design settings." msgstr "Не маю можливості зберегти налаштування дизайну." #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "Не вдалося оновити ваш дизайн." @@ -346,31 +385,31 @@ msgstr "Спроба заблокувати користувача невдал msgid "Unblock user failed." msgstr "Спроба розблокувати користувача невдала." -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "Прямі повідомлення від %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Всі прямі повідомлення надіслані від %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "Пряме повідомлення до %s" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "Всі прямі повідомлення надіслані до %s" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "Повідомлення без тексту!" @@ -407,7 +446,9 @@ msgstr "" "щоб ніхто не почув." #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "Жодних статусів з таким ID." @@ -423,45 +464,55 @@ msgstr "Цей статус вже є обраним." msgid "Could not create favorite." msgstr "Не можна позначити як обране." -#: actions/apifavoritedestroy.php:124 +#. 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 "Цей статус не є обраним." -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Не можна видалити зі списку обраних." -#: actions/apifriendshipscreate.php:110 +#. 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 "Не вдалося додати користувача: користувача не знайдено." -#: actions/apifriendshipscreate.php:119 +#. 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 "Не вдалося додати користувача: %s вже присутній у вашому списку." -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "Не вдалося відмінити підписку: користувача не знайдено." +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Ви не можете відписатись від самого себе." -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "Два ID або імені у мережі мають бути представлені." -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "Не вдалось встановити джерело користувача." -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "Не вдалося знайти цільового користувача." #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -471,7 +522,7 @@ msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -479,7 +530,7 @@ msgstr "Це ім’я вже використовується. Спробуйт #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -488,7 +539,7 @@ msgstr "Це недійсне ім’я користувача." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -497,132 +548,164 @@ msgstr "Веб-сторінка має недійсну URL-адресу." #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 -#, fuzzy msgid "Full name is too long (maximum 255 characters)." -msgstr "Повне ім’я задовге (не більше 255 символів)." +msgstr "Повне ім’я надто довге (не більше 255 символів)." -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 #, php-format -msgid "Description is too long (max %d chars)." -msgstr "Опис надто довгий (%d знаків максимум)." +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Опис надто довгий (максимум — %d знак)." +msgstr[1] "Опис надто довгий (максимум — %d знаків)." +msgstr[2] "Опис надто довгий (максимум — %d знаків)." +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 -#, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Розташування надто довге (не більше 255 символів)." -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 #, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Забагато додаткових імен! Максимум становить %d." +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Надто багато додаткових імен! Максимум становить %d." +msgstr[1] "Надто багато додаткових імен! Максимум становить %d." +msgstr[2] "Надто багато додаткових імен! Максимум становить %d." -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Помилкове додаткове ім’я: «%s»." -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Додаткове ім’я «%s» вже використовується. Спробуйте інше." -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "Додаткове ім’я не може бути таким самим що й основне." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: 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: 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 "Адміністратор спільноти заблокував ваш профіль." +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Не вдалось долучити користувача %1$s до спільноти %2$s." -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "Ви не стоїте у цій спільноті." +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Не вдалось видалити користувача %1$s зі спільноти %2$s." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "Спільноти %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "Спільноти на %1$s, до яких долучився %2$s." -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Спільноти %s" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "спільноти на %s" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "Збій при завантаженні." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: 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:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "Жодного параметру oauth_token не забезпечено." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: 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:122 -#, fuzzy +#: actions/apioauthauthorize.php:121 msgid "Request token already authorized." -msgstr "Не авторизовано." +msgstr "Токен запиту вже авторизовано." +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -648,10 +731,9 @@ msgid "Invalid nickname / password!" msgstr "Недійсне ім’я / пароль!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 -#, fuzzy +#: actions/apioauthauthorize.php:217 msgid "Database error inserting oauth_token_association." -msgstr "Помилка бази даних при додаванні користувача OAuth-додатку." +msgstr "Помилка бази даних при додаванні параметру oauth_token_association." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Client error displayed submitting invalid form data for edit application. @@ -659,7 +741,7 @@ msgstr "Помилка бази даних при додаванні корис #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -669,19 +751,32 @@ 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:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "Запит на дозвіл під’єднатися до вашого облікового запису" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: 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, %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 " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +msgstr "" +"Додаток запитує дозвіл на %3$s до вашого акаунту %4$s. Ви " +"повинні надавати дозвіл на доступ до вашого акаунту %4$s лише тим стороннім " +"додаткам, яким ви довіряєте." + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -694,14 +789,14 @@ msgstr "" "довіряєте." #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 msgctxt "LEGEND" msgid "Account" msgstr "Акаунт" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -711,7 +806,7 @@ msgstr "Ім’я користувача" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Пароль" @@ -722,7 +817,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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -730,38 +825,52 @@ msgid "Cancel" msgstr "Скасувати" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 msgctxt "BUTTON" msgid "Allow" msgstr "Дозволити" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: 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:559 +#: 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:563 +#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "Запит токену %s було скасовано." -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, php-format -msgid "You have successfully authorized %s." -msgstr "Вас успішно авторизовано на %s." +#. 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: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, php-format +msgid "You have successfully authorized %s" +msgstr "Ви успішно авторизували додаток %s" + +#. 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 " @@ -770,45 +879,54 @@ msgstr "" "Будь ласка, поверніться на %s і уведіть наступний код безпеки, аби завершити " "процес." -#: actions/apistatusesdestroy.php:112 +#. 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 "Цей метод потребує або НАПИСАТИ, або ВИДАЛИТИ." -#: actions/apistatusesdestroy.php:135 +#. 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 "Ви не можете видалити статус іншого користувача." -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 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:541 msgid "Already repeated that notice." msgstr "Цей допис вже повторено." -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "Статус видалено." -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "Не знайдено жодних статусів з таким ID." #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "Клієнт мусить надати параметр «статус» зі значенням." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, 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." @@ -817,11 +935,13 @@ msgstr[1] "Надто довго. Максимальний розмір допи msgstr[2] "Надто довго. Максимальний розмір допису — %d знаків." #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 msgid "Parent notice not found." msgstr "Початковий допис не знайдено." -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -835,67 +955,102 @@ msgstr[2] "" "Максимальна довжина допису становить %d знаків, включно з URL-адресою " "вкладення." -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "Формат не підтримується." -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Обрані від %2$s" -#: actions/apitimelinefavorites.php:119 +#. 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 / %2$s." -msgstr "%1$s оновлення обраних від %2$s / %2$s." +msgid "%1$s updates favorited by %2$s / %3$s." +msgstr "%1$s, оновлення обраних дописів %2$s / %3$s." -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, php-format +msgid "Could not generate feed for group - %s" +msgstr "Не вдалося створити веб-стрічку для спільноти — %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. +#: actions/apitimelinementions.php:115 #, php-format msgid "%1$s / Updates mentioning %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 "%1$s оновив цю відповідь на допис від %2$s / %3$s." -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s загальна стрічка" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s оновлення від усіх!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +msgid "Unimplemented." +msgstr "Метод не виконується." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "Повторено для %s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "Повторення %s" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Дописи позначені з %s" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Оновлення позначені з %1$s на %2$s!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "API метод наразі знаходиться у розробці." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Не знайдено." +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "Сторінку не знайдено." #: actions/attachment.php:73 msgid "No such attachment." @@ -1526,17 +1681,6 @@ msgstr "Це ім’я вже використовується. Спробуйт msgid "Description is required." msgstr "Потрібен опис." -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "Опис надто довгий (максимум — %d знак)." -msgstr[1] "Опис надто довгий (максимум — %d знаків)." -msgstr[2] "Опис надто довгий (максимум — %d знаків)." - #. 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." @@ -1596,7 +1740,17 @@ msgstr "" msgid "Use this form to edit the group." msgstr "Скористайтесь цією формою, щоб відредагувати властивості спільноти." -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Опис надто довгий (%d знаків максимум)." + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Забагато додаткових імен! Максимум становить %d." + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Помилкове додаткове ім’я: «%s»" @@ -2803,7 +2957,6 @@ msgstr "Жодного поточного статусу." #. TRANS: This is the title of the form for adding a new application. #: actions/newapplication.php:52 -#, fuzzy msgid "New application" msgstr "Новий додаток" @@ -2817,18 +2970,16 @@ msgid "Use this form to register a new application." msgstr "Скористайтесь цією формою, щоб зареєструвати новий додаток." #: actions/newapplication.php:169 -#, fuzzy msgid "Name is too long (maximum 255 chars)." -msgstr "Ім’я задовге (255 знаків максимум)." +msgstr "Ім’я надто довге (не більше 255 символів)." #: actions/newapplication.php:184 msgid "Source URL is required." msgstr "Потрібна URL-адреса." #: actions/newapplication.php:199 -#, fuzzy msgid "Organization is too long (maximum 255 chars)." -msgstr "Назва організації надто довга (255 знаків максимум)." +msgstr "Назва організації надто довга (не більше 255 знаків)." #: actions/newapplication.php:266 actions/newapplication.php:275 msgid "Could not create application." @@ -2842,11 +2993,6 @@ msgstr "Нова спільнота" msgid "Use this form to create a new group." msgstr "Скористайтесь цією формою для створення нової спільноти." -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "опис надто довгий (%d знаків максимум)." - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "Нове повідомлення" @@ -3636,7 +3782,7 @@ msgstr "" #. 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:230 -#, fuzzy, php-format +#, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." msgstr[0] "Біографія надто довга (не більше %d символу)." @@ -3650,9 +3796,8 @@ msgstr "Часовий пояс не обрано." #. TRANS: Validation error in form for profile settings. #: actions/profilesettings.php:281 -#, fuzzy msgid "Language is too long (maximum 50 characters)." -msgstr "Мова задовга (не більше 50 символів)." +msgstr "Мова надто довга (не більше 50 символів)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. @@ -5793,7 +5938,7 @@ msgstr "Користувача для однокористувацького р #. TRANS: Server exception. #: classes/User.php:906 msgid "Single-user mode code called when not enabled." -msgstr "" +msgstr "Код для однокористувацького режиму називається, коли не ввімкнуто." #. TRANS: Server exception thrown when creating a group failed. #: classes/User_group.php:495 @@ -6287,13 +6432,12 @@ msgstr "Не вдалося створити анонімний додаток O #: lib/apioauthstore.php:151 msgid "" "Could not find a profile and application associated with the request token." -msgstr "" +msgstr "Не вдалося знайти профіль і додаток, пов’язаний з токеном запиту." #. TRANS: Exception thrown when no access token can be issued. #: lib/apioauthstore.php:186 -#, fuzzy msgid "Could not issue access token." -msgstr "Не можна долучити повідомлення." +msgstr "Не вдалося видати токен доступу." #. TRANS: Server error displayed when a database error occurs. #: lib/apioauthstore.php:243 @@ -7893,9 +8037,8 @@ msgstr "Відкликати роль «%s» для цього користув #. TRANS: Client error on action trying to visit a non-existing page. #: lib/router.php:847 -#, fuzzy msgid "Page not found." -msgstr "API метод не знайдено." +msgstr "Сторінку не знайдено." #: lib/sandboxform.php:67 msgid "Sandbox" @@ -8130,17 +8273,17 @@ msgid "Moderator" msgstr "Модератор" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "мить тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "хвилину тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8149,12 +8292,12 @@ msgstr[1] "близько %d хвилин тому" msgstr[2] "близько %d хвилин тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "годину тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8163,12 +8306,12 @@ msgstr[1] "близько %d годин тому" msgstr[2] "близько %d годин тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "день тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8177,12 +8320,12 @@ msgstr[1] "близько %d днів тому" msgstr[2] "близько %d днів тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "місяць тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8191,7 +8334,7 @@ msgstr[1] "близько %d місяців тому" msgstr[2] "близько %d місяців тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "близько року тому" @@ -8212,21 +8355,22 @@ msgstr "%s є неприпустимим кольором! Використай #, php-format msgid "Unknown user. Go to %s to add your address to your account" msgstr "" +"Невідомий користувач. Перейти до %s, аби додати свою адресу до акаунту." #. 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:404 -#, fuzzy, php-format +#, 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] "" -"Повідомлення надто довге, максимум становить %1$d символів, натомість ви " +"Повідомлення надто довге. Максимум становить %1$d символів, натомість ви " "надсилаєте %2$d." msgstr[1] "" -"Повідомлення надто довге, максимум становить %1$d символів, натомість ви " +"Повідомлення надто довге. Максимум становить %1$d символів, натомість ви " "надсилаєте %2$d." msgstr[2] "" -"Повідомлення надто довге, максимум становить %1$d символів, натомість ви " +"Повідомлення надто довге. Максимум становить %1$d символів, натомість ви " "надсилаєте %2$d." #: scripts/restoreuser.php:82 @@ -8244,18 +8388,3 @@ msgstr "" #, php-format msgid "%d entries in backup." msgstr "У резервному файлі збережено %d дописів." - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "Повне ім’я задовге (255 знаків максимум)" - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "Розташування надто довге (255 знаків максимум)." - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "Надто довго. Максимальний розмір %d знаків." - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "Ви перевищили ліміт (%d знаків максимум)." - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "Опишіть себе та свої інтереси (%d знаків)" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index fc803cf8d3..f95400972d 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -14,71 +14,72 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:34+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:44+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2010-10-20 20:23:09+0000\n" +"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -#. TRANS: Page title +#. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "访问" -#. TRANS: Page notice -#: actions/accessadminpanel.php:67 +#. TRANS: Page notice. +#: actions/accessadminpanel.php:64 msgid "Site access settings" msgstr "网站访问设置" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 +#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "注册" -#. TRANS: Checkbox instructions for admin setting "Private" -#: actions/accessadminpanel.php:165 +#. TRANS: Checkbox instructions for admin setting "Private". +#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "要禁止匿名用户(未登录)浏览网站吗?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:167 +#: actions/accessadminpanel.php:157 msgctxt "LABEL" msgid "Private" msgstr "非公开" -#. TRANS: Checkbox instructions for admin setting "Invite only" -#: actions/accessadminpanel.php:174 +#. TRANS: Checkbox instructions for admin setting "Invite only". +#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." msgstr "只允许邀请注册。" #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:176 +#: actions/accessadminpanel.php:166 msgid "Invite only" msgstr "邀请制" -#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) -#: actions/accessadminpanel.php:183 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +#: actions/accessadminpanel.php:173 msgid "Disable new registrations." msgstr "禁止新用户注册" #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 +#: actions/accessadminpanel.php:175 msgid "Closed" msgstr "封闭(不允许新用户注册)" -#. TRANS: Title / tooltip for button to save access settings in site admin panel -#: actions/accessadminpanel.php:202 +#. TRANS: Title for button to save access settings in site admin panel. +#: actions/accessadminpanel.php:191 msgid "Save access settings" 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 to store form data in the Paths admin panel. @@ -86,7 +87,7 @@ msgstr "保存访问设置" #. TRANS: Button label to save SMS preferences. #. TRANS: Save button for settings for a profile in a subscriptions list. #. TRANS: Button label in the "Edit application" form. -#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/pathsadminpanel.php:512 #: actions/profilesettings.php:201 actions/smssettings.php:209 #: actions/subscriptions.php:246 lib/applicationeditform.php:355 @@ -94,29 +95,45 @@ msgctxt "BUTTON" msgid "Save" 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 msgid "No such page." msgstr "没有这个页面。" +#. TRANS: Client error when user not found for an 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 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 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: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:111 +#: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:117 -#: actions/apiaccountupdateprofileimage.php:108 actions/apiblockcreate.php:95 -#: actions/apiblockdestroy.php:94 actions/apidirectmessage.php:78 -#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 -#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 -#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 -#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/apiaccountupdateprofilebackgroundimage.php:118 +#: actions/apiaccountupdateprofileimage.php:104 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:75 #: 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 @@ -129,41 +146,42 @@ msgid "No such user." msgstr "没有这个用户。" #. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 +#: actions/all.php:91 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s 和好友,第%2$d页" #. TRANS: Page title. %s is user nickname -#. TRANS: H1 text. %s is a user nickname +#. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. -#: actions/all.php:93 actions/all.php:190 actions/allrss.php:116 -#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#: actions/all.php:94 actions/all.php:191 actions/allrss.php:115 +#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s 和好友们" -#. TRANS: %s is user nickname -#: actions/all.php:107 +#. TRANS: %s is user nickname. +#: actions/all.php:108 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s 好友的聚合(RSS 1.0)" -#. TRANS: %s is user nickname -#: actions/all.php:116 +#. TRANS: %s is user nickname. +#: actions/all.php:117 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s 好友的聚合(RSS 2.0)" -#. TRANS: %s is user nickname -#: actions/all.php:125 +#. TRANS: %s is user nickname. +#: actions/all.php:126 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "%s 好友的聚合(Atom)" -#. TRANS: %s is user nickname -#: actions/all.php:138 +#. 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." @@ -171,7 +189,7 @@ msgstr "这是 %s 和好友的时间线,但是没有任何人发布内容。" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:145 +#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -179,9 +197,9 @@ msgid "" msgstr "" "尝试关注更多的人、[加入一个小组](%%action.groups%%) 或者自己发一些东西。" -#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#. 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:149 +#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " @@ -192,7 +210,7 @@ msgstr "" #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. -#: actions/all.php:154 actions/replies.php:210 actions/showstream.php:208 +#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:208 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -200,65 +218,80 @@ msgid "" msgstr "" "现在就[注册一个帐号](%%%%action.register%%%%)并呼叫或者发一条消息给%s。" -#. TRANS: H1 text -#: actions/all.php:187 +#. TRANS: H1 text for page when viewing a list for self. +#: actions/all.php:188 msgid "You and friends" msgstr "你和好友们" #. 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:121 actions/apitimelinefriends.php:216 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:120 actions/apitimelinefriends.php:213 +#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s上%1$s和好友们的更新!" #. TRANS: Client error displayed handling a non-existing 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). -#: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:93 +#. 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:119 -#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:102 -#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 -#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 -#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 -#: actions/apigroupshow.php:116 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 -#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 -#: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#: 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:151 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:158 actions/apiusershow.php:100 msgid "API method not found." 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:84 -#: actions/apiaccountupdateprofile.php:86 +#: actions/apiaccountupdatedeliverydevice.php:83 +#: actions/apiaccountupdateprofile.php:85 #: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:111 -#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:86 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:89 actions/apifavoritedestroy.php:93 -#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:93 -#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 -#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:195 +#: 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 msgid "This method requires a POST." msgstr "此方法接受POST请求。" #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:104 +#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -266,16 +299,19 @@ msgstr "" "你必须指定一个名为'device'的参数,值可以是以下中的一个:sms, im, none。" #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:131 +#: actions/apiaccountupdatedeliverydevice.php:130 msgid "Could not update user." 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. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:198 -#: actions/apiaccountupdateprofilecolors.php:186 -#: actions/apiaccountupdateprofileimage.php:133 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofilebackgroundimage.php:199 +#: actions/apiaccountupdateprofilecolors.php:183 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 @@ -290,8 +326,8 @@ 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. #: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:100 actions/apimediaupload.php:83 -#: actions/apistatusesupdate.php:211 actions/avatarsettings.php:259 +#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -305,10 +341,12 @@ msgstr[0] "服务器当前的设置无法处理这么多的 POST 数据(%s byt #. 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. -#: actions/apiaccountupdateprofilebackgroundimage.php:137 -#: actions/apiaccountupdateprofilebackgroundimage.php:148 -#: actions/apiaccountupdateprofilecolors.php:165 -#: actions/apiaccountupdateprofilecolors.php:175 +#. 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 @@ -316,8 +354,9 @@ msgid "Unable to save your design settings." msgstr "无法保存你的外观设置。" #. TRANS: Error displayed when updating design settings fails. -#: actions/apiaccountupdateprofilebackgroundimage.php:190 -#: actions/apiaccountupdateprofilecolors.php:143 +#. TRANS: Client error displayed when a database error occurs updating profile colours. +#: actions/apiaccountupdateprofilebackgroundimage.php:191 +#: actions/apiaccountupdateprofilecolors.php:139 msgid "Could not update your design." msgstr "无法更新你的外观。" @@ -336,31 +375,31 @@ msgstr "屏蔽用户失败。" msgid "Unblock user failed." msgstr "取消屏蔽用户失败。" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:91 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" msgstr "%s发来的私信" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:96 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "所有来自%s的私信" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:105 +#. TRANS: Title. %s is a user nickname. +#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" msgstr "发给%s的私信" -#. TRANS: %s is a user nickname. -#: actions/apidirectmessage.php:110 +#. TRANS: Subtitle. %s is a user nickname. +#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" msgstr "所有发给%s的私信" -#. TRANS: Client error (406). +#. TRANS: Client error displayed when no message text was submitted (406). #: actions/apidirectmessagenew.php:117 msgid "No message text!" msgstr "消息没有正文!" @@ -393,7 +432,9 @@ msgid "" msgstr "不要向自己发送消息;跟自己悄悄说就得了。" #. TRANS: Client error displayed when requesting a status with a non-existing ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:111 +#. 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 "没有找到此 ID 的消息。" @@ -409,45 +450,55 @@ msgstr "已收藏此状态。" msgid "Could not create favorite." msgstr "无法创建收藏。" -#: actions/apifavoritedestroy.php:124 +#. 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 "此状态未被收藏。" -#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +#. TRANS: Client error displayed when removing a favourite has failed. +#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "无法删除收藏。" -#: actions/apifriendshipscreate.php:110 +#. 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 "无法关注用户:未找到用户。" -#: actions/apifriendshipscreate.php:119 +#. 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 "无法关注用户:你已经关注了%s。" -#: actions/apifriendshipsdestroy.php:110 +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +#: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." msgstr "无法取消关注用户:未找到用户。" +#. TRANS: Client error displayed when trying to unfollow self. #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "你不能取消关注自己。" -#: actions/apifriendshipsexists.php:91 +#. 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 screen_names must be supplied." msgstr "必须提供两个有效的 ID 或用户昵称。" -#: actions/apifriendshipsshow.php:134 +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:131 msgid "Could not determine source user." msgstr "无法确定源用户。" -#: actions/apifriendshipsshow.php:142 +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +#: actions/apifriendshipsshow.php:140 msgid "Could not find target user." msgstr "无法找到目标用户。" #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/apigroupcreate.php:165 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -455,7 +506,7 @@ msgstr "昵称只能使用小写字母和数字且不能使用空格。" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:178 actions/editgroup.php:190 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." @@ -463,7 +514,7 @@ msgstr "昵称已被使用,换一个吧。" #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:186 actions/editgroup.php:193 +#: actions/apigroupcreate.php:183 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." @@ -472,7 +523,7 @@ msgstr "不是有效的昵称。" #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:203 actions/editapplication.php:233 +#: actions/apigroupcreate.php:200 actions/editapplication.php:233 #: actions/editgroup.php:199 actions/newapplication.php:211 #: actions/newgroup.php:139 actions/profilesettings.php:252 #: actions/register.php:224 @@ -481,134 +532,165 @@ msgstr "主页的URL不正确。" #. TRANS: Client error in form for group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:213 actions/editgroup.php:202 +#: actions/apigroupcreate.php:210 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "全名过长(不能超过 255 个字符)。" -#: actions/apigroupcreate.php:221 actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "描述过长(不能超过%d 个字符)。" +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#: actions/apigroupcreate.php:220 actions/editapplication.php:201 +#: actions/newapplication.php:178 +#, fuzzy, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "描述过长(不能超过%d 个字符)。" +#. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:232 actions/editgroup.php:208 -#: actions/newgroup.php:148 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:208 +#: actions/newgroup.php:153 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "位置过长(不能超过255个字符)。" -#: actions/apigroupcreate.php:251 actions/editgroup.php:219 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "太多别名了!最多%d 个。" +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#, fuzzy, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "太多别名了!最多%d 个。" -#: actions/apigroupcreate.php:272 +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#: actions/apigroupcreate.php:280 #, php-format msgid "Invalid alias: \"%s\"." msgstr "无效的别名:“%s”。" -#: actions/apigroupcreate.php:281 actions/editgroup.php:232 -#: actions/newgroup.php:172 +#. 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. +#: actions/apigroupcreate.php:291 actions/editgroup.php:232 +#: actions/newgroup.php:181 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "%s这个别名已被使用,换一个吧。" -#: actions/apigroupcreate.php:294 actions/editgroup.php:238 -#: actions/newgroup.php:178 +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#: actions/apigroupcreate.php:305 actions/editgroup.php:238 +#: actions/newgroup.php:187 msgid "Alias can't be the same as nickname." msgstr "别名不能和昵称相同。" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 -#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 -#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +#. 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 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: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 +#: 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: 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 "你已经被管理员从该小组中屏蔽。" +#. TRANS: Server error displayed when joining a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:140 actions/joingroup.php:134 lib/command.php:350 +#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "无法把用户%1$s添加到%2$s小组" -#: actions/apigroupleave.php:116 +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +#: actions/apigroupleave.php:115 msgid "You are not a member of this group." msgstr "你不是该小组成员。" +#. TRANS: Server error displayed when leaving a group fails. +#. TRANS: %1$s is a user nickname, $2$s is a group nickname. #. 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:126 actions/leavegroup.php:129 +#: actions/apigroupleave.php:127 actions/leavegroup.php:129 #: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "无法把用户%1$s从%2$s小组删除" -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Used as title in check for group membership. %s is a user name. +#: actions/apigrouplist.php:94 #, php-format msgid "%s's groups" msgstr "%s 的小组" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 +#. 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 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "%1$s 的小组,%2$s 是小组成员。" -#. TRANS: Message is used as a title. %s is a site name. +#. 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:92 actions/usergroups.php:63 +#: actions/apigrouplistall.php:88 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s 的小组" -#: actions/apigrouplistall.php:96 +#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. +#: actions/apigrouplistall.php:93 #, php-format msgid "groups on %s" msgstr "在%s上的小组" -#: actions/apimediaupload.php:102 +#. TRANS: Client error displayed when uploading a media file has failed. +#: actions/apimediaupload.php:101 msgid "Upload failed." msgstr "上传失败" #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:103 +#: actions/apioauthaccesstoken.php:101 #, fuzzy msgid "Invalid request token or verifier." msgstr "指定的登录 token 无效。" #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:108 +#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "没有提供 oauth_token 参数" #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:116 actions/apioauthauthorize.php:130 +#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 #, fuzzy msgid "Invalid request token." msgstr "无效的 token。" #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:122 +#: actions/apioauthauthorize.php:121 #, fuzzy 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:270 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -633,7 +715,7 @@ msgid "Invalid nickname / password!" msgstr "用户名或密码不正确。" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:218 +#: actions/apioauthauthorize.php:217 #, fuzzy msgid "Database error inserting oauth_token_association." msgstr "插入 OAuth 应用用户时数据库出错。" @@ -644,7 +726,7 @@ msgstr "插入 OAuth 应用用户时数据库出错。" #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:297 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -654,19 +736,31 @@ 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:362 +#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "一个应用想连接到你的账号" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:379 +#: 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, %4$s is the StatusNet sitename. +#: actions/apioauthauthorize.php:425 +#, fuzzy, 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 "" +"来自%2$s%1$s应用希望能够%3$s你的%4$s账户数据。你应该只允许你信任信任的第三方程序访问你的%4$s账户。" + #. 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:399 +#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -677,7 +771,7 @@ msgstr "" "strong>你的%4$s账户数据。你应该只允许你信任信任的第三方程序访问你的%4$s账户。" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:420 +#: actions/apioauthauthorize.php:455 #, fuzzy msgctxt "LEGEND" msgid "Account" @@ -685,7 +779,7 @@ msgstr "帐号" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#: actions/apioauthauthorize.php:424 actions/login.php:252 +#: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 @@ -695,7 +789,7 @@ msgstr "昵称" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:428 actions/login.php:255 +#: actions/apioauthauthorize.php:463 actions/login.php:255 #: actions/register.php:438 lib/accountsettingsaction.php:120 msgid "Password" msgstr "密码" @@ -706,7 +800,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:443 actions/emailsettings.php:127 +#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127 #: actions/imsettings.php:131 actions/smssettings.php:137 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -714,164 +808,224 @@ msgid "Cancel" msgstr "取消" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:450 +#: actions/apioauthauthorize.php:485 #, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "允许" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:467 +#: actions/apioauthauthorize.php:502 #, fuzzy msgid "Authorize access to your account information." msgstr "允许或阻止对你账户信息的访问。" #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:559 +#: actions/apioauthauthorize.php:594 #, fuzzy msgid "Authorization canceled." msgstr "IM 确认已取消。" #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:563 +#: actions/apioauthauthorize.php:598 #, fuzzy, php-format msgid "The request token %s has been revoked." msgstr "%s的 request token 被拒绝并被取消。" -#. TRANS: Header of user notification after authorising an application access to a profile. -#. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:582 -#, fuzzy, php-format -msgid "You have successfully authorized %s." +#. 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 +#, fuzzy +msgid "You have successfully authorized the application" msgstr "你没有被授权。" -#. TRANS: Uer notification after authorising an application access to a profile. +#. 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." +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:589 +#: actions/apioauthauthorize.php:632 +#, fuzzy, 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 " "process." msgstr "" -#: actions/apistatusesdestroy.php:112 +#. 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 "此方法接受POST或DELETE请求。" -#: actions/apistatusesdestroy.php:135 +#. 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 "你不能删除其他用户的消息。" -#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#. 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. +#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/deletenotice.php:58 actions/shownotice.php:92 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:84 lib/command.php:535 +#: actions/apistatusesretweet.php:83 lib/command.php:535 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:541 msgid "Already repeated that notice." msgstr "已转发了该消息。" -#: actions/apistatusesshow.php:139 +#. TRANS: Client error displayed requesting a deleted status. +#: actions/apistatusesshow.php:134 msgid "Status deleted." msgstr "消息已删除。" -#: actions/apistatusesshow.php:145 +#. TRANS: Client error displayed requesting a status with an invalid ID. +#: actions/apistatusesshow.php:141 msgid "No status with that ID found." msgstr "没有找到此 ID 的消息。" #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:222 +#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." msgstr "客户端必须提供一个包含内容的“状态”参数。" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:245 +#: actions/apistatusesupdate.php:244 #, fuzzy, 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] "太长了。最长的消息长度是%d个字符。" #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:285 +#: actions/apistatusesupdate.php:284 #, fuzzy msgid "Parent notice not found." msgstr "API方法没有找到。" -#: actions/apistatusesupdate.php:307 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#: actions/apistatusesupdate.php:308 #, fuzzy, 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] "每条消息最长%d字符,包括附件的链接 URL。" -#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#. 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 msgid "Unsupported format." msgstr "不支持的格式。" -#: actions/apitimelinefavorites.php:110 +#. 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 #, php-format msgid "%1$s / Favorites from %2$s" msgstr "%1$s / 来自 %2$s 的收藏" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$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 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %3$s." msgstr "%1$s 条消息被 %2$s 收藏 / %2$s" -#: actions/apitimelinementions.php:118 +#. TRANS: Server error displayed when generating an Atom feed fails. +#. TRANS: %s is the error. +#: actions/apitimelinegroup.php:138 +#, fuzzy, php-format +msgid "Could not generate feed for group - %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 #, php-format msgid "%1$s / Updates mentioning %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 " %1$s 条消息回复给来自 %2$s 的消息 / %3$s。" -#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s 公共时间线" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#. 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 "%s条来自所有人的消息!" -#: actions/apitimelineretweetedtome.php:111 +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +#: actions/apitimelineretweetedbyme.php:71 +#, fuzzy +msgid "Unimplemented." +msgstr "未使用的方法。" + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#: actions/apitimelineretweetedtome.php:108 #, php-format msgid "Repeated to %s" msgstr "转发给%s" -#: actions/apitimelineretweetsofme.php:114 +#. 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 #, php-format msgid "Repeats of %s" msgstr "%s 的转发" -#: actions/apitimelinetag.php:105 actions/tag.php:67 +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#: actions/apitimelinetag.php:101 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "带 %s 标签的消息" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#. 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 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s 上有 %1$s 标签的消息!" -#: actions/apitrends.php:87 +#. TRANS: Server error for unfinished API method showTrends. +#: actions/apitrends.php:85 msgid "API method under construction." msgstr "API 方法尚未实现。" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "未找到。" +#. TRANS: Client error displayed when requesting user information for a non-existing user. +#: actions/apiusershow.php:94 +msgid "User not found." +msgstr "API方法没有找到。" #: actions/attachment.php:73 msgid "No such attachment." @@ -1504,15 +1658,6 @@ msgstr "名字已被使用,换一个吧。" msgid "Description is required." msgstr "必须填写描述。" -#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. -#. TRANS: Form validation error in New application form. -#. TRANS: %d is the maximum number of characters for the description. -#: actions/editapplication.php:201 actions/newapplication.php:178 -#, fuzzy, php-format -msgid "Description is too long (maximum %d character)." -msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "描述过长(不能超过%d 个字符)。" - #. 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." @@ -1571,7 +1716,17 @@ msgstr "管理员才可以编辑小组。" msgid "Use this form to edit the group." msgstr "通过这个表单来编辑小组" -#: actions/editgroup.php:228 actions/newgroup.php:168 +#: actions/editgroup.php:205 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "描述过长(不能超过%d 个字符)。" + +#: actions/editgroup.php:219 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "太多别名了!最多%d 个。" + +#: actions/editgroup.php:228 actions/newgroup.php:177 #, php-format msgid "Invalid alias: \"%s\"" msgstr "无效的别名:“%s”。" @@ -2769,11 +2924,6 @@ msgstr "新小组" msgid "Use this form to create a new group." msgstr "通过此表单创建小组。" -#: actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "描述过长(不能超过%d个字符)。" - #: actions/newmessage.php:71 actions/newmessage.php:234 msgid "New message" msgstr "新消息" @@ -7942,60 +8092,60 @@ msgid "Moderator" msgstr "审核员" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1164 +#: lib/util.php:1175 msgid "a few seconds ago" msgstr "几秒前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1167 +#: lib/util.php:1178 msgid "about a minute ago" msgstr "约1分钟前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1171 +#: lib/util.php:1182 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "约1分钟前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1174 +#: lib/util.php:1185 msgid "about an hour ago" msgstr "约1小时前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1178 +#: lib/util.php:1189 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "约一小时前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1181 +#: lib/util.php:1192 msgid "about a day ago" msgstr "约1天前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1185 +#: lib/util.php:1196 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "约1天前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1188 +#: lib/util.php:1199 msgid "about a month ago" msgstr "约1个月前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1192 +#: lib/util.php:1203 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "约1个月前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1195 +#: lib/util.php:1206 msgid "about a year ago" msgstr "约1年前" @@ -8038,18 +8188,3 @@ msgstr "没有用户被指定;使用备份用户。" #, php-format msgid "%d entries in backup." msgstr "备份中有 %d 个条目。" - -#~ msgid "Full name is too long (max 255 chars)." -#~ msgstr "全名过长(不能超过 255 个字符)。" - -#~ msgid "Location is too long (max 255 chars)." -#~ msgstr "位置过长(不能超过255个字符)。" - -#~ msgid "That's too long. Max message size is %d chars." -#~ msgstr "太长了。最长的信息长度是%d个字符。" - -#~ msgid "Bio is too long (max %d chars)." -#~ msgstr "描述过长(不能超过%d个字符)。" - -#~ msgid "Describe yourself and your interests in %d chars" -#~ msgstr "用不超过%d个字符描述你自己和你的兴趣" diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index 58278c7738..1a19918486 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/br/LC_MESSAGES/APC.po b/plugins/APC/locale/br/LC_MESSAGES/APC.po index 6aab6d5787..db0470b13d 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/es/LC_MESSAGES/APC.po b/plugins/APC/locale/es/LC_MESSAGES/APC.po index e3b8ec8b2b..c41f2bcac7 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/fr/LC_MESSAGES/APC.po b/plugins/APC/locale/fr/LC_MESSAGES/APC.po index 92f342b378..c4be4f1aeb 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/gl/LC_MESSAGES/APC.po b/plugins/APC/locale/gl/LC_MESSAGES/APC.po index 67305afc1a..0ead074fb2 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/ia/LC_MESSAGES/APC.po b/plugins/APC/locale/ia/LC_MESSAGES/APC.po index 14a1832613..3e591f492f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/id/LC_MESSAGES/APC.po b/plugins/APC/locale/id/LC_MESSAGES/APC.po index 77cb451a1f..ab55af6827 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:14+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 088acc9b01..626d62ccae 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/nb/LC_MESSAGES/APC.po b/plugins/APC/locale/nb/LC_MESSAGES/APC.po index 5e3f15b5a6..fb3b53a101 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-01 20:37:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/nl/LC_MESSAGES/APC.po b/plugins/APC/locale/nl/LC_MESSAGES/APC.po index c65407320d..48782bafd1 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/pl/LC_MESSAGES/APC.po b/plugins/APC/locale/pl/LC_MESSAGES/APC.po index 392a204117..b3fbd72413 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/pt/LC_MESSAGES/APC.po b/plugins/APC/locale/pt/LC_MESSAGES/APC.po index 1198fefcb4..749209872b 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 2aeb21ab09..d02a56ef30 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-01 20:37:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/ru/LC_MESSAGES/APC.po b/plugins/APC/locale/ru/LC_MESSAGES/APC.po index 7996ea2f41..932cd46754 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/tl/LC_MESSAGES/APC.po b/plugins/APC/locale/tl/LC_MESSAGES/APC.po index 690be13bd6..411e47f672 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/uk/LC_MESSAGES/APC.po b/plugins/APC/locale/uk/LC_MESSAGES/APC.po index f363d29c49..b63543a91c 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 7c27e264cb..bd9fe4593f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:12+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/Adsense/locale/Adsense.pot b/plugins/Adsense/locale/Adsense.pot index bab9a538c4..2f5e4af2f8 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/br/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po index 093825b906..c572f9b271 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:19+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:09+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:19+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po index f30b1fdc9d..e7ddaa32e9 100644 --- a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:19+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:09+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:19+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po index f9a8d4a7a6..5a2fcfb255 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:20+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:09+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po index d5df371b72..17b56a00aa 100644 --- a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:09+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" @@ -55,7 +55,7 @@ msgstr "ID client Google" #: adsenseadminpanel.php:170 msgid "Ad script URL" -msgstr "URL du script d’annonce" +msgstr "Adresse URL du script d’annonce" #: adsenseadminpanel.php:171 msgid "Script URL (advanced)" diff --git a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po index e658cb074a..e906670ea2 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:09+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po index 1434535cb9..1f8a73ea20 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:09+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po index f9b171875c..e8addce834 100644 --- a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:09+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 003b60c02e..d3ccee66ef 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:09+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 fa9e1fe1b4..44fe432aaf 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:09+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po index 65197bc021..c4854ad3f8 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:09+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" @@ -62,7 +62,7 @@ msgstr "URL voor script (gevorderd)" #: adsenseadminpanel.php:176 msgid "Medium rectangle" -msgstr "Gemiddelde rechthoek" +msgstr "Middelgrote rechthoek" #: adsenseadminpanel.php:177 msgid "Medium rectangle slot code" diff --git a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po index 1e2e46fab5..cbe5e05544 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: 2010-10-20 17:39+0000\n" -"PO-Revision-Date: 2010-10-20 17:41:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:09+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75070); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po index 044ea0bcc7..85bb316a61 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:09+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po index 0f289d4339..031b795032 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:09+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 e79a47c26b..ad5ed1ad26 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:48+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:09+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po index 2d71b55aa1..f15de57c98 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:09+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" @@ -79,11 +79,11 @@ msgstr "Слот-код прямокутника" #: adsenseadminpanel.php:188 msgid "Leaderboard" -msgstr "Дошка лідерів" +msgstr "Банер" #: adsenseadminpanel.php:189 msgid "Leaderboard slot code" -msgstr "Слот-код дошки лідерів" +msgstr "Слот-код банеру" #: adsenseadminpanel.php:194 msgid "Skyscraper" diff --git a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po index 0615bbc7d5..9bc76e4160 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:09+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/AnonymousFave/locale/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot index 237bb5da02..bae4b596e6 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/br/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po index d95dc7fed4..968d238af5 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:10+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:34+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po new file mode 100644 index 0000000000..48ba429f8c --- /dev/null +++ b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po @@ -0,0 +1,102 @@ +# Translation of StatusNet - AnonymousFave to German (Deutsch) +# Expored from translatewiki.net +# +# Author: The Evil IP address +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AnonymousFave\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:10+0000\n" +"Language-Team: German \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: de\n" +"X-Message-Group: #out-statusnet-plugin-anonymousfave\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Label for tally for number of times a notice was favored. +#: AnonymousFavePlugin.php:207 +msgid "Favored" +msgstr "" + +#. TRANS: Server exception. +#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 +msgid "Couldn't create anonymous user session." +msgstr "Konnte keine anonyme Benutzer-Sitzung erstellen." + +#. TRANS: Plugin description. +#: AnonymousFavePlugin.php:326 +msgid "Allow anonymous users to favorite notices." +msgstr "Ermöglicht anonymen Benutzern Nachrichten zu favorisieren." + +#. TRANS: Client error. +#: anonfavor.php:60 +msgid "" +"Could not favor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Konnte Nachricht nicht favorisieren! Bitte stelle sicher, dass Cookies in " +"deinem Browser aktiviert sind." + +#. TRANS: Client error. +#: anonfavor.php:71 anondisfavor.php:72 +msgid "There was a problem with your session token. Try again, please." +msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." + +#. TRANS: Client error. +#: anonfavor.php:78 +msgid "This notice is already a favorite!" +msgstr "Diese Nachricht ist bereits ein Favorit!" + +#. TRANS: Server error. +#: anonfavor.php:85 +msgid "Could not create favorite." +msgstr "Konnte keinen Favoriten erstellen." + +#. TRANS: Title. +#: anonfavor.php:95 +msgid "Disfavor favorite" +msgstr "Aus Favoriten entfernen" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:155 Fave_tally.php:184 +#, php-format +msgid "Couldn't update favorite tally for notice ID %d." +msgstr "" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:215 +#, php-format +msgid "Couldn't create favorite tally for notice ID %d." +msgstr "" + +#. TRANS: Client error. +#: anondisfavor.php:61 +msgid "" +"Could not disfavor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Konnte Nachricht nicht aus den Favoriten entfernen! Bitte stelle sicher, " +"dass Cookies in deinem Browser aktiviert sind." + +#. TRANS: Client error. +#: anondisfavor.php:82 +msgid "This notice is not a favorite!" +msgstr "Diese Nachricht ist kein Favorit!" + +#. TRANS: Server error. +#: anondisfavor.php:91 +msgid "Could not delete favorite." +msgstr "Konnte Favoriten nicht löschen." + +#. TRANS: Title. +#: anondisfavor.php:101 +msgid "Add to favorites" +msgstr "Zu Favoriten hinzufügen" diff --git a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po index a451aaec8d..f6e7533a33 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:34+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po index e5cbb86d38..28e1509253 100644 --- a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:13+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:06:35+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po index ba6eb3ac48..7a6e340c0c 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:38+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po index 147bb289be..d23a8d50c1 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:34+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po index cef8f60171..46cce77f7d 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:34+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po index f9addab250..db578ced57 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:34+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po index 09a35825c2..922c17eae7 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:13+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:06:35+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po index 7408489b66..9c5e24c1ea 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:11+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:34+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/ApiLogger/ApiLoggerPlugin.php b/plugins/ApiLogger/ApiLoggerPlugin.php new file mode 100644 index 0000000000..deb54008e5 --- /dev/null +++ b/plugins/ApiLogger/ApiLoggerPlugin.php @@ -0,0 +1,77 @@ +. + */ + +/** + * @package ApiLoggerPlugin + * @maintainer Brion Vibber + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +class ApiLoggerPlugin extends Plugin +{ + // Lower this to do random sampling of API requests rather than all. + // 0.1 will check about 10% of hits, etc. + public $frequency = 1.0; + + function onArgsInitialize($args) + { + if (isset($args['action'])) { + $action = strtolower($args['action']); + if (substr($action, 0, 3) == 'api') { + if ($this->frequency < 1.0 && $this->frequency > 0.0) { + $max = mt_getrandmax(); + $n = mt_rand() / $max; + if ($n > $this->frequency) { + return true; + } + } + $uri = $_SERVER['REQUEST_URI']; + + $method = $_SERVER['REQUEST_METHOD']; + $ssl = empty($_SERVER['HTTPS']) ? 'no' : 'yes'; + $cookie = empty($_SERVER['HTTP_COOKIE']) ? 'no' : 'yes'; + $etag = empty($_SERVER['HTTP_IF_MATCH']) ? 'no' : 'yes'; + $last = empty($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? 'no' : 'yes'; + $auth = empty($_SERVER['HTTP_AUTHORIZATION']) ? 'no' : 'yes'; + if ($auth == 'no' && function_exists('apache_request_headers')) { + // Sometimes Authorization doesn't make it into $_SERVER. + // Probably someone thought it was scary. + $headers = apache_request_headers(); + if (isset($headers['Authorization'])) { + $auth = 'yes'; + } + } + $agent = empty($_SERVER['HTTP_USER_AGENT']) ? 'no' : $_SERVER['HTTP_USER_AGENT']; + + $query = (strpos($uri, '?') === false) ? 'no' : 'yes'; + if ($query == 'yes') { + if (preg_match('/\?since_id=\d+$/', $uri)) { + $query = 'since_id'; + } + } + + common_log(LOG_INFO, "STATLOG action:$action method:$method ssl:$ssl query:$query cookie:$cookie auth:$auth ifmatch:$etag ifmod:$last agent:$agent"); + } + } + return true; + } +} diff --git a/plugins/AutoSandbox/locale/AutoSandbox.pot b/plugins/AutoSandbox/locale/AutoSandbox.pot index dbdc1703ce..bc428edd2a 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/de/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po index 1ab375aa90..73c0bedf36 100644 --- a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:31+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:13+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:22+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po index ff946f8bc9..f38e561d9e 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:13+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po index 79d73805e5..048454a1ad 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:13+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po index 1ccdbcc11e..dcc50d87c6 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:13+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po index 996e3b085e..8fc2faa800 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:14+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po index 6d29637e3e..a2de61a7dd 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:14+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po index 85a2398622..3b9b91b821 100644 --- a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:31+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:14+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:22+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po index 9f6ac5b828..5de02a296d 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:15+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po index ff12e5034e..c0d082e367 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:15+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 a4f282849c..5a4f0065f8 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-01 20:37:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/Autocomplete/locale/Autocomplete.pot b/plugins/Autocomplete/locale/Autocomplete.pot index 7aa9fdc16b..d27406f2a6 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/br/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po index ad60a53b98..f04b6c2bad 100644 --- a/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:12+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:36+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po index 6053415d42..c6ea4f03f8 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:12+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:36+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po index 59fa0dbe4d..8a7c38a015 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:12+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po index 2af8c82a52..061258c00c 100644 --- a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:12+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po index 70f03d99bd..7c3252c2b5 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:12+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po index 69455e8c90..cb664c4789 100644 --- a/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:12+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:54:24+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po index 4ec766ba19..d21fb413a1 100644 --- a/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:12+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\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 64636623fa..fe497db3e8 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:12+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po index b8c2446e9f..cded249e47 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:12+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/pt/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/pt/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..23c84f38e1 --- /dev/null +++ b/plugins/Autocomplete/locale/pt/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - Autocomplete to Portuguese (Português) +# Expored from translatewiki.net +# +# Author: Hamilton Abreu +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Autocomplete\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:12+0000\n" +"Language-Team: Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt\n" +"X-Message-Group: #out-statusnet-plugin-autocomplete\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: AutocompletePlugin.php:80 +msgid "" +"The autocomplete plugin allows users to autocomplete screen names in @ " +"replies. When an \"@\" is typed into the notice text area, an autocomplete " +"box is displayed populated with the user's friend' screen names." +msgstr "" +"O plugin de preenchimento automático preenche os nomes de utilizadores em " +"respostas @. Ao escrever \"@\" na área de texto de mensagem, é apresentada " +"uma caixa com os nomes dos amigos do utilizador." diff --git a/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po index 2176a74d6f..60518c6b88 100644 --- a/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:12+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:54:24+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po index 2a3984b277..2ad45ed5a5 100644 --- a/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:12+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po index 1c7432068c..6e8248ac21 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:12+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po index 429ee6b3d9..390fbda65e 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:12+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po index 8b318190f9..8c88d6661b 100644 --- a/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:12+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/BitlyUrl/locale/BitlyUrl.pot b/plugins/BitlyUrl/locale/BitlyUrl.pot index b46badcdb7..4800084a0d 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po index 20893ce51e..145487c1f5 100644 --- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-20 17:39+0000\n" -"PO-Revision-Date: 2010-10-20 17:41:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:16+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-20 01:18:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75070); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po index c89f39c871..6555a48e42 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:01+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:16+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:05+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po index 8f586d3cae..131a1ff5cf 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:01+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:16+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:05+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po index 7669c1ebcd..de00fc1cab 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:34+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:16+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: 2010-10-09 14:35:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po index f59b7e497b..0226b38f12 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:01+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:16+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:05+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po index a9746e27af..2e77fe062a 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: 2010-10-20 00:18+0000\n" -"PO-Revision-Date: 2010-10-20 00:20:31+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:16+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-19 23:49:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/Blacklist/BlacklistPlugin.php b/plugins/Blacklist/BlacklistPlugin.php index 10f89ef723..15545f03cb 100644 --- a/plugins/Blacklist/BlacklistPlugin.php +++ b/plugins/Blacklist/BlacklistPlugin.php @@ -145,7 +145,8 @@ class BlacklistPlugin extends Plugin if (!empty($homepage)) { if (!$this->_checkUrl($homepage)) { - $msg = sprintf(_m("You may not register with homepage '%s'."), + // TRANS: Validation failure for URL. %s is the URL. + $msg = sprintf(_m("You may not register with homepage \"%s\"."), $homepage); throw new ClientException($msg); } @@ -155,7 +156,8 @@ class BlacklistPlugin extends Plugin if (!empty($nickname)) { if (!$this->_checkNickname($nickname)) { - $msg = sprintf(_m("You may not register with nickname '%s'."), + // TRANS: Validation failure for nickname. %s is the nickname. + $msg = sprintf(_m("You may not register with nickname \"%s\"."), $nickname); throw new ClientException($msg); } @@ -179,7 +181,8 @@ class BlacklistPlugin extends Plugin if (!empty($homepage)) { if (!$this->_checkUrl($homepage)) { - $msg = sprintf(_m("You may not use homepage '%s'."), + // TRANS: Validation failure for URL. %s is the URL. + $msg = sprintf(_m("You may not use homepage \"%s\"."), $homepage); throw new ClientException($msg); } @@ -189,7 +192,8 @@ class BlacklistPlugin extends Plugin if (!empty($nickname)) { if (!$this->_checkNickname($nickname)) { - $msg = sprintf(_m("You may not use nickname '%s'."), + // TRANS: Validation failure for nickname. %s is the nickname. + $msg = sprintf(_m("You may not use nickname \"%s\"."), $nickname); throw new ClientException($msg); } @@ -231,6 +235,7 @@ class BlacklistPlugin extends Plugin $url = htmlspecialchars_decode($url); if (!$this->_checkUrl($url)) { + // TRANS: Validation failure for URL. %s is the URL. $msg = sprintf(_m("You may not use URL \"%s\" in notices."), $url); throw new ClientException($msg); @@ -372,8 +377,10 @@ class BlacklistPlugin extends Plugin $action_name = $nav->action->trimmed('action'); $nav->out->menuItem(common_local_url('blacklistadminpanel'), - _m('Blacklist'), - _m('Blacklist configuration'), + // TRANS: Menu item in admin panel. + _m('MENU','Blacklist'), + // TRANS: Tooltip for menu item in admin panel. + _m('TOOLTIP','Blacklist configuration'), $action_name == 'blacklistadminpanel', 'nav_blacklist_admin_panel'); } @@ -399,6 +406,7 @@ class BlacklistPlugin extends Plugin $action->elementStart('li'); $this->checkboxAndText($action, 'blacklistnickname', + // TRANS: Checkbox with text label in the delete user form. _m('Add this nickname pattern to blacklist'), 'blacklistnicknamepattern', $this->patternizeNickname($user->nickname)); @@ -408,6 +416,7 @@ class BlacklistPlugin extends Plugin $action->elementStart('li'); $this->checkboxAndText($action, 'blacklisthomepage', + // TRANS: Checkbox with text label in the delete user form. _m('Add this homepage pattern to blacklist'), 'blacklisthomepagepattern', $this->patternizeHomepage($profile->homepage)); @@ -463,4 +472,82 @@ class BlacklistPlugin extends Plugin $hostname = parse_url($homepage, PHP_URL_HOST); return $hostname; } + + function onStartHandleFeedEntry($activity) + { + return $this->_checkActivity($activity); + } + + function onStartHandleSalmon($activity) + { + return $this->_checkActivity($activity); + } + + function _checkActivity($activity) + { + $actor = $activity->actor; + + if (empty($actor)) { + return true; + } + + $homepage = strtolower($actor->link); + + if (!empty($homepage)) { + if (!$this->_checkUrl($homepage)) { + // TRANS: Exception thrown trying to post a notice while having set a blocked homepage URL. %s is the blocked URL. + $msg = sprintf(_m("Users from \"%s\" blocked."), + $homepage); + throw new ClientException($msg); + } + } + + $nickname = strtolower($actor->poco->preferredUsername); + + if (!empty($nickname)) { + if (!$this->_checkNickname($nickname)) { + // TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. + $msg = sprintf(_m("Posts from nickname \"%s\" disallowed."), + $nickname); + throw new ClientException($msg); + } + } + + return true; + } + + /** + * Check URLs and homepages for blacklisted users. + */ + function onStartSubscribe($subscriber, $other) + { + foreach (array($other->profileurl, $other->homepage) as $url) { + + if (empty($url)) { + continue; + } + + $url = strtolower($url); + + if (!$this->_checkUrl($url)) { + // TRANS: Client exception thrown trying to subscribe to a person with a blocked homepage or site URL. %s is the blocked URL. + $msg = sprintf(_m("Users from \"%s\" blocked."), + $url); + throw new ClientException($msg); + } + } + + $nickname = $other->nickname; + + if (!empty($nickname)) { + if (!$this->_checkNickname($nickname)) { + // TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. + $msg = sprintf(_m("Can't subscribe to nickname \"%s\"."), + $nickname); + throw new ClientException($msg); + } + } + + return true; + } } diff --git a/plugins/Blacklist/locale/Blacklist.pot b/plugins/Blacklist/locale/Blacklist.pot index a58f7b4d7a..2dbbd25f71 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,51 +16,85 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: BlacklistPlugin.php:148 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:149 #, php-format -msgid "You may not register with homepage '%s'." +msgid "You may not register with homepage \"%s\"." msgstr "" -#: BlacklistPlugin.php:158 +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:160 #, php-format -msgid "You may not register with nickname '%s'." +msgid "You may not register with nickname \"%s\"." msgstr "" -#: BlacklistPlugin.php:182 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:185 #, php-format -msgid "You may not use homepage '%s'." +msgid "You may not use homepage \"%s\"." msgstr "" -#: BlacklistPlugin.php:192 +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:196 #, php-format -msgid "You may not use nickname '%s'." +msgid "You may not use nickname \"%s\"." msgstr "" -#: BlacklistPlugin.php:234 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:239 #, php-format msgid "You may not use URL \"%s\" in notices." msgstr "" -#: BlacklistPlugin.php:338 +#: BlacklistPlugin.php:343 msgid "Keeps a blacklist of forbidden nickname and URL patterns." msgstr "" -#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +#. TRANS: Menu item in admin panel. +#: BlacklistPlugin.php:381 +msgctxt "MENU" msgid "Blacklist" msgstr "" -#: BlacklistPlugin.php:376 +#. TRANS: Tooltip for menu item in admin panel. +#: BlacklistPlugin.php:383 +msgctxt "TOOLTIP" msgid "Blacklist configuration" msgstr "" -#: BlacklistPlugin.php:402 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:410 msgid "Add this nickname pattern to blacklist" msgstr "" -#: BlacklistPlugin.php:411 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:420 msgid "Add this homepage pattern to blacklist" msgstr "" +#. TRANS: Exception thrown trying to post a notice while having set a blocked homepage URL. %s is the blocked URL. +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked homepage or site URL. %s is the blocked URL. +#: BlacklistPlugin.php:499 BlacklistPlugin.php:534 +#, php-format +msgid "Users from \"%s\" blocked." +msgstr "" + +#. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:510 +#, php-format +msgid "Posts from nickname \"%s\" disallowed." +msgstr "" + +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:545 +#, php-format +msgid "Can't subscribe to nickname \"%s\"." +msgstr "" + +#: blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "" + #: blacklistadminpanel.php:62 msgid "Blacklisted URLs and nicknames" msgstr "" diff --git a/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po index 40ba326092..5e6bf3afa8 100644 --- a/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po @@ -9,63 +9,97 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:17+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: BlacklistPlugin.php:148 -#, php-format -msgid "You may not register with homepage '%s'." +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:149 +#, fuzzy, php-format +msgid "You may not register with homepage \"%s\"." msgstr "Ne c'hellit ket en em enskrivañ gant ar bajenn degemer \"%s\"." -#: BlacklistPlugin.php:158 -#, php-format -msgid "You may not register with nickname '%s'." +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:160 +#, fuzzy, php-format +msgid "You may not register with nickname \"%s\"." msgstr "Ne c'hellit ket en em enskrivañ gant al lesanv \"%s\"." -#: BlacklistPlugin.php:182 -#, php-format -msgid "You may not use homepage '%s'." +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:185 +#, fuzzy, php-format +msgid "You may not use homepage \"%s\"." msgstr "Ne c'hellit ket implij ar bajenn degemer \"%s\"." -#: BlacklistPlugin.php:192 -#, php-format -msgid "You may not use nickname '%s'." +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:196 +#, fuzzy, php-format +msgid "You may not use nickname \"%s\"." msgstr "Ne c'hellit ket implij al lesanv \"%s\"." -#: BlacklistPlugin.php:234 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:239 #, php-format msgid "You may not use URL \"%s\" in notices." msgstr "Ne c'hellit ket implij an URL \"%s\" en alioù." -#: BlacklistPlugin.php:338 +#: BlacklistPlugin.php:343 msgid "Keeps a blacklist of forbidden nickname and URL patterns." msgstr "" -#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +#. TRANS: Menu item in admin panel. +#: BlacklistPlugin.php:381 +msgctxt "MENU" msgid "Blacklist" msgstr "" -#: BlacklistPlugin.php:376 +#. TRANS: Tooltip for menu item in admin panel. +#: BlacklistPlugin.php:383 +msgctxt "TOOLTIP" msgid "Blacklist configuration" msgstr "" -#: BlacklistPlugin.php:402 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:410 msgid "Add this nickname pattern to blacklist" msgstr "" -#: BlacklistPlugin.php:411 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:420 msgid "Add this homepage pattern to blacklist" msgstr "" +#. TRANS: Exception thrown trying to post a notice while having set a blocked homepage URL. %s is the blocked URL. +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked homepage or site URL. %s is the blocked URL. +#: BlacklistPlugin.php:499 BlacklistPlugin.php:534 +#, php-format +msgid "Users from \"%s\" blocked." +msgstr "" + +#. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:510 +#, php-format +msgid "Posts from nickname \"%s\" disallowed." +msgstr "" + +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:545 +#, fuzzy, php-format +msgid "Can't subscribe to nickname \"%s\"." +msgstr "Ne c'hellit ket implij al lesanv \"%s\"." + +#: blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "" + #: blacklistadminpanel.php:62 msgid "Blacklisted URLs and nicknames" msgstr "" diff --git a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po index cbc54fa4e5..35efa11df4 100644 --- a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po @@ -9,63 +9,99 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:17+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:25+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: BlacklistPlugin.php:148 -#, php-format -msgid "You may not register with homepage '%s'." +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:149 +#, fuzzy, php-format +msgid "You may not register with homepage \"%s\"." msgstr "Du darfst dich nicht mit der Homepage „%s“ anmelden." -#: BlacklistPlugin.php:158 -#, php-format -msgid "You may not register with nickname '%s'." +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:160 +#, fuzzy, php-format +msgid "You may not register with nickname \"%s\"." msgstr "Du darfst dich nicht mit den Benutzernamen „%s“ anmelden." -#: BlacklistPlugin.php:182 -#, php-format -msgid "You may not use homepage '%s'." +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:185 +#, fuzzy, php-format +msgid "You may not use homepage \"%s\"." msgstr "Du darfst nicht die Homepage „%s“ benutzen." -#: BlacklistPlugin.php:192 -#, php-format -msgid "You may not use nickname '%s'." +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:196 +#, fuzzy, php-format +msgid "You may not use nickname \"%s\"." msgstr "Du darfst nicht den Benutzernamen „%s“ benutzen." -#: BlacklistPlugin.php:234 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:239 #, php-format msgid "You may not use URL \"%s\" in notices." msgstr "Du darfst nicht die URL „%s“ in Nachrichten verwenden." -#: BlacklistPlugin.php:338 +#: BlacklistPlugin.php:343 msgid "Keeps a blacklist of forbidden nickname and URL patterns." msgstr "Hält eine schwarze Liste der verbotenen Benutzernamen und URL-Muster." -#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +#. TRANS: Menu item in admin panel. +#: BlacklistPlugin.php:381 +#, fuzzy +msgctxt "MENU" msgid "Blacklist" msgstr "Schwarze Liste" -#: BlacklistPlugin.php:376 +#. TRANS: Tooltip for menu item in admin panel. +#: BlacklistPlugin.php:383 +#, fuzzy +msgctxt "TOOLTIP" msgid "Blacklist configuration" msgstr "Konfiguration der schwarzen Liste" -#: BlacklistPlugin.php:402 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:410 msgid "Add this nickname pattern to blacklist" msgstr "Dieses Benutzernamen-Muster zur schwarzen Liste hinzufügen" -#: BlacklistPlugin.php:411 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:420 msgid "Add this homepage pattern to blacklist" msgstr "Dieses Homepage-Muster zur schwarzen Liste hinzufügen" +#. TRANS: Exception thrown trying to post a notice while having set a blocked homepage URL. %s is the blocked URL. +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked homepage or site URL. %s is the blocked URL. +#: BlacklistPlugin.php:499 BlacklistPlugin.php:534 +#, php-format +msgid "Users from \"%s\" blocked." +msgstr "" + +#. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:510 +#, php-format +msgid "Posts from nickname \"%s\" disallowed." +msgstr "" + +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:545 +#, fuzzy, php-format +msgid "Can't subscribe to nickname \"%s\"." +msgstr "Du darfst nicht den Benutzernamen „%s“ benutzen." + +#: blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "Schwarze Liste" + #: blacklistadminpanel.php:62 msgid "Blacklisted URLs and nicknames" msgstr "URLs und Benutzernamen auf der schwarzen Liste" diff --git a/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po index 09799df241..4422c017f4 100644 --- a/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po @@ -10,64 +10,100 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:17+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: BlacklistPlugin.php:148 -#, php-format -msgid "You may not register with homepage '%s'." +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:149 +#, fuzzy, php-format +msgid "You may not register with homepage \"%s\"." msgstr "No puedes registrarte con la página principal '%s'." -#: BlacklistPlugin.php:158 -#, php-format -msgid "You may not register with nickname '%s'." +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:160 +#, fuzzy, php-format +msgid "You may not register with nickname \"%s\"." msgstr "No puedes registrarte con el nombre de usuario '%s'." -#: BlacklistPlugin.php:182 -#, php-format -msgid "You may not use homepage '%s'." +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:185 +#, fuzzy, php-format +msgid "You may not use homepage \"%s\"." msgstr "No puedes utilizar la página de inicio '%s'." -#: BlacklistPlugin.php:192 -#, php-format -msgid "You may not use nickname '%s'." +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:196 +#, fuzzy, php-format +msgid "You may not use nickname \"%s\"." msgstr "No puedes utilizar el nombre de usuario '%s'." -#: BlacklistPlugin.php:234 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:239 #, php-format msgid "You may not use URL \"%s\" in notices." msgstr "No puedes utilizar el URL \"%s\" en los mensajes." -#: BlacklistPlugin.php:338 +#: BlacklistPlugin.php:343 msgid "Keeps a blacklist of forbidden nickname and URL patterns." msgstr "" "Mantiene una lista negra de patrones de nombres de usuario y URL prohibidos." -#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +#. TRANS: Menu item in admin panel. +#: BlacklistPlugin.php:381 +#, fuzzy +msgctxt "MENU" msgid "Blacklist" msgstr "Lista negra" -#: BlacklistPlugin.php:376 +#. TRANS: Tooltip for menu item in admin panel. +#: BlacklistPlugin.php:383 +#, fuzzy +msgctxt "TOOLTIP" msgid "Blacklist configuration" msgstr "Configuración de lista negra" -#: BlacklistPlugin.php:402 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:410 msgid "Add this nickname pattern to blacklist" msgstr "Añadir este patrón de nombre de usuario a la lista negra" -#: BlacklistPlugin.php:411 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:420 msgid "Add this homepage pattern to blacklist" msgstr "Añadir este patrón de página principal a la lista negra" +#. TRANS: Exception thrown trying to post a notice while having set a blocked homepage URL. %s is the blocked URL. +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked homepage or site URL. %s is the blocked URL. +#: BlacklistPlugin.php:499 BlacklistPlugin.php:534 +#, php-format +msgid "Users from \"%s\" blocked." +msgstr "" + +#. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:510 +#, php-format +msgid "Posts from nickname \"%s\" disallowed." +msgstr "" + +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:545 +#, fuzzy, php-format +msgid "Can't subscribe to nickname \"%s\"." +msgstr "No puedes utilizar el nombre de usuario '%s'." + +#: blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "Lista negra" + #: blacklistadminpanel.php:62 msgid "Blacklisted URLs and nicknames" msgstr "URL y nombres de usuario incluidos en la lista negra" diff --git a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po index f6a1d195c6..23502a7373 100644 --- a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po @@ -10,63 +10,99 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:17+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: BlacklistPlugin.php:148 -#, php-format -msgid "You may not register with homepage '%s'." +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:149 +#, fuzzy, php-format +msgid "You may not register with homepage \"%s\"." msgstr "Vous ne pouvez pas vous inscrire avec la page d’accueil « %s »." -#: BlacklistPlugin.php:158 -#, php-format -msgid "You may not register with nickname '%s'." +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:160 +#, fuzzy, php-format +msgid "You may not register with nickname \"%s\"." msgstr "Vous ne pouvez pas vous inscrire avec le pseudonyme « %s »." -#: BlacklistPlugin.php:182 -#, php-format -msgid "You may not use homepage '%s'." +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:185 +#, fuzzy, php-format +msgid "You may not use homepage \"%s\"." msgstr "Vous ne pouvez pas utiliser la page d’accueil « %s »." -#: BlacklistPlugin.php:192 -#, php-format -msgid "You may not use nickname '%s'." +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:196 +#, fuzzy, php-format +msgid "You may not use nickname \"%s\"." msgstr "Vous ne pouvez pas utiliser le pseudonyme « %s »." -#: BlacklistPlugin.php:234 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:239 #, php-format msgid "You may not use URL \"%s\" in notices." msgstr "Vous ne pouvez pas utiliser l’URL « %s » dans les avis." -#: BlacklistPlugin.php:338 +#: BlacklistPlugin.php:343 msgid "Keeps a blacklist of forbidden nickname and URL patterns." msgstr "Maintient une liste noire des pseudonymes et motifs d’URL interdits." -#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +#. TRANS: Menu item in admin panel. +#: BlacklistPlugin.php:381 +#, fuzzy +msgctxt "MENU" msgid "Blacklist" msgstr "Liste noire" -#: BlacklistPlugin.php:376 +#. TRANS: Tooltip for menu item in admin panel. +#: BlacklistPlugin.php:383 +#, fuzzy +msgctxt "TOOLTIP" msgid "Blacklist configuration" msgstr "Configuration de la liste noire" -#: BlacklistPlugin.php:402 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:410 msgid "Add this nickname pattern to blacklist" msgstr "Ajouter ce motif de pseudonymes à la liste noire" -#: BlacklistPlugin.php:411 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:420 msgid "Add this homepage pattern to blacklist" msgstr "Ajouter ce motif de pages d’accueil à la liste noire" +#. TRANS: Exception thrown trying to post a notice while having set a blocked homepage URL. %s is the blocked URL. +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked homepage or site URL. %s is the blocked URL. +#: BlacklistPlugin.php:499 BlacklistPlugin.php:534 +#, php-format +msgid "Users from \"%s\" blocked." +msgstr "" + +#. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:510 +#, php-format +msgid "Posts from nickname \"%s\" disallowed." +msgstr "" + +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:545 +#, fuzzy, php-format +msgid "Can't subscribe to nickname \"%s\"." +msgstr "Vous ne pouvez pas utiliser le pseudonyme « %s »." + +#: blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "Liste noire" + #: blacklistadminpanel.php:62 msgid "Blacklisted URLs and nicknames" msgstr "Liste noire d’URL et de pseudonymes" diff --git a/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po index daf89cc503..7c3f489aba 100644 --- a/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po @@ -9,63 +9,99 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:17+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: BlacklistPlugin.php:148 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:149 #, php-format -msgid "You may not register with homepage '%s'." +msgid "You may not register with homepage \"%s\"." msgstr "" -#: BlacklistPlugin.php:158 +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:160 #, php-format -msgid "You may not register with nickname '%s'." +msgid "You may not register with nickname \"%s\"." msgstr "" -#: BlacklistPlugin.php:182 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:185 #, php-format -msgid "You may not use homepage '%s'." +msgid "You may not use homepage \"%s\"." msgstr "" -#: BlacklistPlugin.php:192 +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:196 #, php-format -msgid "You may not use nickname '%s'." +msgid "You may not use nickname \"%s\"." msgstr "" -#: BlacklistPlugin.php:234 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:239 #, php-format msgid "You may not use URL \"%s\" in notices." msgstr "" -#: BlacklistPlugin.php:338 +#: BlacklistPlugin.php:343 msgid "Keeps a blacklist of forbidden nickname and URL patterns." msgstr "" -#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +#. TRANS: Menu item in admin panel. +#: BlacklistPlugin.php:381 +#, fuzzy +msgctxt "MENU" msgid "Blacklist" msgstr "Lista negra" -#: BlacklistPlugin.php:376 +#. TRANS: Tooltip for menu item in admin panel. +#: BlacklistPlugin.php:383 +#, fuzzy +msgctxt "TOOLTIP" msgid "Blacklist configuration" msgstr "Configuración da lista negra" -#: BlacklistPlugin.php:402 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:410 msgid "Add this nickname pattern to blacklist" msgstr "" -#: BlacklistPlugin.php:411 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:420 msgid "Add this homepage pattern to blacklist" msgstr "" +#. TRANS: Exception thrown trying to post a notice while having set a blocked homepage URL. %s is the blocked URL. +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked homepage or site URL. %s is the blocked URL. +#: BlacklistPlugin.php:499 BlacklistPlugin.php:534 +#, php-format +msgid "Users from \"%s\" blocked." +msgstr "" + +#. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:510 +#, php-format +msgid "Posts from nickname \"%s\" disallowed." +msgstr "" + +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:545 +#, php-format +msgid "Can't subscribe to nickname \"%s\"." +msgstr "" + +#: blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "Lista negra" + #: blacklistadminpanel.php:62 msgid "Blacklisted URLs and nicknames" msgstr "" diff --git a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po index 82b37a1a20..9e47584763 100644 --- a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po @@ -9,64 +9,98 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:57+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-28 00:09:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: BlacklistPlugin.php:148 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:149 #, php-format -msgid "You may not register with homepage '%s'." -msgstr "Tu non pote registrar te con le pagina personal '%s'." +msgid "You may not register with homepage \"%s\"." +msgstr "Tu non pote registrar te con le pagina personal \"%s\"." -#: BlacklistPlugin.php:158 +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:160 #, php-format -msgid "You may not register with nickname '%s'." -msgstr "Tu non pote registrar te con le pseudonymo '%s'." +msgid "You may not register with nickname \"%s\"." +msgstr "Tu non pote registrar te con le pseudonymo \"%s\"." -#: BlacklistPlugin.php:182 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:185 #, php-format -msgid "You may not use homepage '%s'." -msgstr "Tu non pote usar le pagina personal '%s'." +msgid "You may not use homepage \"%s\"." +msgstr "Tu non pote usar le pagina personal \"%s\"." -#: BlacklistPlugin.php:192 +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:196 #, php-format -msgid "You may not use nickname '%s'." -msgstr "Tu non pote usar le pseudonymo '%s'." +msgid "You may not use nickname \"%s\"." +msgstr "Tu non pote usar le pseudonymo \"%s\"." -#: BlacklistPlugin.php:234 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:239 #, php-format msgid "You may not use URL \"%s\" in notices." msgstr "Tu non pote usar le URL \"%s\" in notas." -#: BlacklistPlugin.php:338 +#: BlacklistPlugin.php:343 msgid "Keeps a blacklist of forbidden nickname and URL patterns." msgstr "" "Tene un lista nigre de pseudonymos e patronos de adresse URL prohibite." -#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +#. TRANS: Menu item in admin panel. +#: BlacklistPlugin.php:381 +msgctxt "MENU" msgid "Blacklist" msgstr "Lista nigre" -#: BlacklistPlugin.php:376 +#. TRANS: Tooltip for menu item in admin panel. +#: BlacklistPlugin.php:383 +msgctxt "TOOLTIP" msgid "Blacklist configuration" msgstr "Configuration del lista nigre" -#: BlacklistPlugin.php:402 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:410 msgid "Add this nickname pattern to blacklist" msgstr "Adder iste patrono de pseudonymo al lista nigre" -#: BlacklistPlugin.php:411 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:420 msgid "Add this homepage pattern to blacklist" msgstr "Adder iste patrono de pagina personal al lista nigre" +#. TRANS: Exception thrown trying to post a notice while having set a blocked homepage URL. %s is the blocked URL. +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked homepage or site URL. %s is the blocked URL. +#: BlacklistPlugin.php:499 BlacklistPlugin.php:534 +#, php-format +msgid "Users from \"%s\" blocked." +msgstr "Usatores de \"%s\" blocate." + +#. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:510 +#, php-format +msgid "Posts from nickname \"%s\" disallowed." +msgstr "Notas del pseudonymo \"%s\" non permittite." + +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:545 +#, php-format +msgid "Can't subscribe to nickname \"%s\"." +msgstr "Non pote subscriber al pseudonymo \"%s\"." + +#: blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "Lista nigre" + #: blacklistadminpanel.php:62 msgid "Blacklisted URLs and nicknames" msgstr "URLs e pseudonymos in lista nigre" diff --git a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po index a1866c1dca..bb0f2213a4 100644 --- a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po @@ -9,63 +9,97 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:57+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-28 00:09:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -#: BlacklistPlugin.php:148 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:149 #, php-format -msgid "You may not register with homepage '%s'." +msgid "You may not register with homepage \"%s\"." msgstr "Не можете да се регистрирате со домашната страница „%s“." -#: BlacklistPlugin.php:158 +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:160 #, php-format -msgid "You may not register with nickname '%s'." +msgid "You may not register with nickname \"%s\"." msgstr "Не можете да се регистрирате со прекарот „%s“." -#: BlacklistPlugin.php:182 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:185 #, php-format -msgid "You may not use homepage '%s'." +msgid "You may not use homepage \"%s\"." msgstr "Не можете да ја користите домашната страница „%s“." -#: BlacklistPlugin.php:192 +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:196 #, php-format -msgid "You may not use nickname '%s'." +msgid "You may not use nickname \"%s\"." msgstr "Не можете да го користите прекарот „%s“." -#: BlacklistPlugin.php:234 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:239 #, php-format msgid "You may not use URL \"%s\" in notices." msgstr "Не можете да ја користите URL-адресата „%s“ во забелешки." -#: BlacklistPlugin.php:338 +#: BlacklistPlugin.php:343 msgid "Keeps a blacklist of forbidden nickname and URL patterns." msgstr "Води црн список на забранети видови на прекари и URL-адреси." -#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +#. TRANS: Menu item in admin panel. +#: BlacklistPlugin.php:381 +msgctxt "MENU" msgid "Blacklist" msgstr "Црн список" -#: BlacklistPlugin.php:376 +#. TRANS: Tooltip for menu item in admin panel. +#: BlacklistPlugin.php:383 +msgctxt "TOOLTIP" msgid "Blacklist configuration" -msgstr "Поставки на црниот список" +msgstr "Поставки за црниот список" -#: BlacklistPlugin.php:402 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:410 msgid "Add this nickname pattern to blacklist" msgstr "Додај го овој вид прекар во црниот список" -#: BlacklistPlugin.php:411 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:420 msgid "Add this homepage pattern to blacklist" msgstr "Додај го овој вид домашна страница во црниот список" +#. TRANS: Exception thrown trying to post a notice while having set a blocked homepage URL. %s is the blocked URL. +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked homepage or site URL. %s is the blocked URL. +#: BlacklistPlugin.php:499 BlacklistPlugin.php:534 +#, php-format +msgid "Users from \"%s\" blocked." +msgstr "Корисниците од „%s“ се блокирани." + +#. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:510 +#, php-format +msgid "Posts from nickname \"%s\" disallowed." +msgstr "Објавите од прекарот „%s“ не се дозволени." + +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:545 +#, php-format +msgid "Can't subscribe to nickname \"%s\"." +msgstr "Не можете да се претплатите на прекарот „%s“." + +#: blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "Црн список" + #: blacklistadminpanel.php:62 msgid "Blacklisted URLs and nicknames" msgstr "URL-адреси и прекари на црниот список" diff --git a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po index 21e731ceec..4f389e657b 100644 --- a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po @@ -9,63 +9,97 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:57+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-28 00:09:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: BlacklistPlugin.php:148 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:149 #, php-format -msgid "You may not register with homepage '%s'." +msgid "You may not register with homepage \"%s\"." msgstr "U kunt niet registreren met \"%s\" als homepage." -#: BlacklistPlugin.php:158 +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:160 #, php-format -msgid "You may not register with nickname '%s'." +msgid "You may not register with nickname \"%s\"." msgstr "U kunt niet registreren met \"%s\" als gebruikersnaam." -#: BlacklistPlugin.php:182 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:185 #, php-format -msgid "You may not use homepage '%s'." +msgid "You may not use homepage \"%s\"." msgstr "U mag \"%s\" niet als homepage instellen." -#: BlacklistPlugin.php:192 +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:196 #, php-format -msgid "You may not use nickname '%s'." +msgid "You may not use nickname \"%s\"." msgstr "U mag \"%s\" niet als gebruikersnaam gebruiken." -#: BlacklistPlugin.php:234 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:239 #, php-format msgid "You may not use URL \"%s\" in notices." msgstr "U mag de URL \"%s\" niet gebruiken in mededelingen." -#: BlacklistPlugin.php:338 +#: BlacklistPlugin.php:343 msgid "Keeps a blacklist of forbidden nickname and URL patterns." msgstr "Houdt een lijst bij van verboden gebruikersnamen en URL-patronen." -#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +#. TRANS: Menu item in admin panel. +#: BlacklistPlugin.php:381 +msgctxt "MENU" msgid "Blacklist" msgstr "Zwarte lijst" -#: BlacklistPlugin.php:376 +#. TRANS: Tooltip for menu item in admin panel. +#: BlacklistPlugin.php:383 +msgctxt "TOOLTIP" msgid "Blacklist configuration" msgstr "Instellingen voor zwarte lijst" -#: BlacklistPlugin.php:402 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:410 msgid "Add this nickname pattern to blacklist" msgstr "Dit gebruikersnaampatroon aan de zwarte lijst toevoegen" -#: BlacklistPlugin.php:411 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:420 msgid "Add this homepage pattern to blacklist" msgstr "Dit homepagepatroon aan de zwarte lijst toevoegen" +#. TRANS: Exception thrown trying to post a notice while having set a blocked homepage URL. %s is the blocked URL. +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked homepage or site URL. %s is the blocked URL. +#: BlacklistPlugin.php:499 BlacklistPlugin.php:534 +#, php-format +msgid "Users from \"%s\" blocked." +msgstr "Gebruikers van \"%s\" zijn geblokkeerd." + +#. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:510 +#, php-format +msgid "Posts from nickname \"%s\" disallowed." +msgstr "Gebruiker \"%s\" mag geen berichten plaatsen." + +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:545 +#, php-format +msgid "Can't subscribe to nickname \"%s\"." +msgstr "U kunt niet abonneren op de gebruiker \"%s\"." + +#: blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "Zwarte lijst" + #: blacklistadminpanel.php:62 msgid "Blacklisted URLs and nicknames" msgstr "URL's en gebruikersnamen die op de zwarte lijst staan" diff --git a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po index 8fb53e8461..1f733396d8 100644 --- a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po @@ -9,64 +9,98 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:09:57+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-28 00:09:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blacklist\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" -#: BlacklistPlugin.php:148 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:149 #, php-format -msgid "You may not register with homepage '%s'." +msgid "You may not register with homepage \"%s\"." msgstr "Ви не можете зареєструватися, вказавши «%s» як веб-адресу." -#: BlacklistPlugin.php:158 +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:160 #, php-format -msgid "You may not register with nickname '%s'." +msgid "You may not register with nickname \"%s\"." msgstr "Ви не можете зареєструватися, використавши нікнейм «%s»." -#: BlacklistPlugin.php:182 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:185 #, php-format -msgid "You may not use homepage '%s'." +msgid "You may not use homepage \"%s\"." msgstr "Ви не можете використовувати веб-адресу «%s»." -#: BlacklistPlugin.php:192 +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:196 #, php-format -msgid "You may not use nickname '%s'." +msgid "You may not use nickname \"%s\"." msgstr "Ви не можете використовувати нікнейм «%s»." -#: BlacklistPlugin.php:234 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:239 #, php-format msgid "You may not use URL \"%s\" in notices." msgstr "Ви не можете використовувати URL-адресу «%s» в своїх повідомленнях." -#: BlacklistPlugin.php:338 +#: BlacklistPlugin.php:343 msgid "Keeps a blacklist of forbidden nickname and URL patterns." msgstr "Зберігає чорний список заборонених нікнеймів та URL-шаблонів." -#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +#. TRANS: Menu item in admin panel. +#: BlacklistPlugin.php:381 +msgctxt "MENU" msgid "Blacklist" msgstr "Чорний список" -#: BlacklistPlugin.php:376 +#. TRANS: Tooltip for menu item in admin panel. +#: BlacklistPlugin.php:383 +msgctxt "TOOLTIP" msgid "Blacklist configuration" msgstr "Конфігурація чорного списку" -#: BlacklistPlugin.php:402 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:410 msgid "Add this nickname pattern to blacklist" msgstr "Додати цей нікнейм до чорного списку" -#: BlacklistPlugin.php:411 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:420 msgid "Add this homepage pattern to blacklist" msgstr "Додати цей шаблон веб-адреси до чорного списку" +#. TRANS: Exception thrown trying to post a notice while having set a blocked homepage URL. %s is the blocked URL. +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked homepage or site URL. %s is the blocked URL. +#: BlacklistPlugin.php:499 BlacklistPlugin.php:534 +#, php-format +msgid "Users from \"%s\" blocked." +msgstr "Користувачів з «%s» заблоковано." + +#. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:510 +#, php-format +msgid "Posts from nickname \"%s\" disallowed." +msgstr "Дописи від користувача «%s» заборонені." + +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:545 +#, php-format +msgid "Can't subscribe to nickname \"%s\"." +msgstr "Не можу підписатися до користувача «%s»." + +#: blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "Чорний список" + #: blacklistadminpanel.php:62 msgid "Blacklisted URLs and nicknames" msgstr "URL-адреси і нікнеми, що містяться в чорному списку" diff --git a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po index 58661e647b..a195cf3799 100644 --- a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po @@ -9,64 +9,100 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-09-27 23:18:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: BlacklistPlugin.php:148 -#, php-format -msgid "You may not register with homepage '%s'." +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:149 +#, fuzzy, php-format +msgid "You may not register with homepage \"%s\"." msgstr "你不能使用主页 '%s' 注册。" -#: BlacklistPlugin.php:158 -#, php-format -msgid "You may not register with nickname '%s'." +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:160 +#, fuzzy, php-format +msgid "You may not register with nickname \"%s\"." msgstr "你不能使用昵称 '%s' 注册。" -#: BlacklistPlugin.php:182 -#, php-format -msgid "You may not use homepage '%s'." +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:185 +#, fuzzy, php-format +msgid "You may not use homepage \"%s\"." msgstr "你不能使用主页 '%s'。" -#: BlacklistPlugin.php:192 -#, php-format -msgid "You may not use nickname '%s'." +#. TRANS: Validation failure for nickname. %s is the nickname. +#: BlacklistPlugin.php:196 +#, fuzzy, php-format +msgid "You may not use nickname \"%s\"." msgstr "你不能使用昵称 '%s'。" -#: BlacklistPlugin.php:234 +#. TRANS: Validation failure for URL. %s is the URL. +#: BlacklistPlugin.php:239 #, php-format msgid "You may not use URL \"%s\" in notices." msgstr "你不能在提醒中使用URL '%s'。" -#: BlacklistPlugin.php:338 +#: BlacklistPlugin.php:343 msgid "Keeps a blacklist of forbidden nickname and URL patterns." msgstr "为被禁止的昵称和URL模板创建黑名单。" -#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +#. TRANS: Menu item in admin panel. +#: BlacklistPlugin.php:381 +#, fuzzy +msgctxt "MENU" msgid "Blacklist" msgstr "黑名单" -#: BlacklistPlugin.php:376 +#. TRANS: Tooltip for menu item in admin panel. +#: BlacklistPlugin.php:383 +#, fuzzy +msgctxt "TOOLTIP" msgid "Blacklist configuration" msgstr "黑名单配置" -#: BlacklistPlugin.php:402 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:410 msgid "Add this nickname pattern to blacklist" msgstr "向黑名单添加此昵称规则" -#: BlacklistPlugin.php:411 +#. TRANS: Checkbox with text label in the delete user form. +#: BlacklistPlugin.php:420 msgid "Add this homepage pattern to blacklist" msgstr "向黑名单添加此主页规则" +#. TRANS: Exception thrown trying to post a notice while having set a blocked homepage URL. %s is the blocked URL. +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked homepage or site URL. %s is the blocked URL. +#: BlacklistPlugin.php:499 BlacklistPlugin.php:534 +#, php-format +msgid "Users from \"%s\" blocked." +msgstr "" + +#. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:510 +#, php-format +msgid "Posts from nickname \"%s\" disallowed." +msgstr "" + +#. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. +#: BlacklistPlugin.php:545 +#, fuzzy, php-format +msgid "Can't subscribe to nickname \"%s\"." +msgstr "你不能使用昵称 '%s'。" + +#: blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "黑名单" + #: blacklistadminpanel.php:62 msgid "Blacklisted URLs and nicknames" msgstr "黑名单中的URL和昵称" diff --git a/plugins/BlankAd/locale/BlankAd.pot b/plugins/BlankAd/locale/BlankAd.pot index 39b24d2470..fe56b4da74 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/br/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po index 236653fd49..ffc7033c55 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po index 9fecedcdef..dc57fc3161 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po index 8153234d53..ee641b1a45 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po index b887c6961f..2ab2693ff8 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po index c01f4ad204..08a8e6d288 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po index 8a6f38b5f8..f9afbe8a58 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-09 14:33:25+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po new file mode 100644 index 0000000000..e511e04eed --- /dev/null +++ b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlankAd to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlankAd\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-23 18:56:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-blankad\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlankAdPlugin.php:127 +msgid "Plugin for testing ad layout." +msgstr "Plug-in voor het testen van advertentielay-outs." diff --git a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po index 0837942036..d329d065f5 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 97e5a108b8..3d654128fb 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po index 959090e25c..1305d75a86 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po index 87d624dc73..68a454c4c8 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 37539ce5a6..54690e08c0 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:56:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlogspamNet/locale/BlogspamNet.pot b/plugins/BlogspamNet/locale/BlogspamNet.pot index 80f1d09845..c10893992e 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/br/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po index f7c0dcfabf..2fc3cfbd66 100644 --- a/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po index 5f69390236..4d4c0f13fe 100644 --- a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po index d8d773e501..5c305b7083 100644 --- a/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po index e55731db12..766c3d1de6 100644 --- a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po index c3ffd56977..b2a2c51003 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po index 40a7b37371..55ca08963e 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po index 3f81eb72c7..041ff5fd6d 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-03 20:55:40+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po index 9b0b138cc4..97d1cc5e5d 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:18+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/pt/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/pt/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..5fb3ecff68 --- /dev/null +++ b/plugins/BlogspamNet/locale/pt/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlogspamNet to Portuguese (Português) +# Expored from translatewiki.net +# +# Author: GTNS +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:19+0000\n" +"Language-Team: Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-18 20:29:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt\n" +"X-Message-Group: #out-statusnet-plugin-blogspamnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlogspamNetPlugin.php:152 +msgid "Plugin to check submitted notices with blogspam.net." +msgstr "Plugin para verificar mensagens submetidas com o blogspam.net." diff --git a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po index 0fbdbf8cab..33671351d5 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:19+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:40+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po index 26d20bc5c0..86a1d64ffd 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:19+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po index c59c80adbc..6ea6500fd9 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po index e8dff72d08..0bf59e802b 100644 --- a/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-01 20:37:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index 89790a9f51..501d03d2fd 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: 2010-10-23 18:02+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/es/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po index 00114e7089..4a2a7c9e8c 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:21+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po index 8d7c3cc651..2fc64cf356 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:21+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po index 7d7191dfe6..5fa8240fae 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po index 784631289e..05a18d1205 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po index de1fae832c..934f374fd7 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po index e7dc7c1459..4f6b08aa30 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:21+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 ff79083fde..c426d8536f 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:21+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po index cb4d530c0f..29b3dfa8ec 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:22+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po index 40c7126cf4..7182a730df 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:33:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 72061455f4..0baf920283 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-09 14:33:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CasAuthentication/locale/CasAuthentication.pot b/plugins/CasAuthentication/locale/CasAuthentication.pot index 4153f0fd0c..67f165186c 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/es/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po index 1b6976a064..20e91d145c 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:23+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:33:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po index 4469a54efd..7effccfc36 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:33:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po index eeb584df6e..1502503019 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:33:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po index a43436225d..97e3b249f4 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:33:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po index 741092215f..238ac9eada 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:33:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-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 e37367a787..f9e0a10d8d 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:23+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:33:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po index cf402ab536..470c14d1d0 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:33:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 d079f314dc..c3a726d10a 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-01 20:37:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:33:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/ClientSideShorten/locale/ClientSideShorten.pot b/plugins/ClientSideShorten/locale/ClientSideShorten.pot index 471126f4b2..50a12e804b 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/de/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po index dd4a52afb2..2f74ca7450 100644 --- a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:40+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:23+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:34:33+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po index 9443e654e0..8e3c6e18f3 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:23+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po index 9cc6033c28..88df72f157 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po index 896ae4c855..711eadfb1c 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po index b3f6be4afb..5a021d9730 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:23+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:42+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 3aef629397..457f3caf85 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po index 3a95085657..58838b3cf3 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-09-27 23:18:18+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po index daceb78ba8..7708260b2a 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po index 663b11b2e0..8097c3d777 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po index 8337536b6a..040e9e6cca 100644 --- a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 256d523036..0496fbef4f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-09-27 23:18:18+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/Comet/locale/Comet.pot b/plugins/Comet/locale/Comet.pot index 7349005237..a98435523d 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/es/LC_MESSAGES/Comet.po b/plugins/Comet/locale/es/LC_MESSAGES/Comet.po index 096795a5bf..bcd4f4c3bc 100644 --- a/plugins/Comet/locale/es/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/es/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:24+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po index 8ef1d1ebc1..b3a92a824f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po index cd2616f7c9..761a5d1e53 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/id/LC_MESSAGES/Comet.po b/plugins/Comet/locale/id/LC_MESSAGES/Comet.po index d237e91d93..411334f69c 100644 --- a/plugins/Comet/locale/id/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/id/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:24+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:07:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\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 4bff9a14ae..68d30dba40 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po index 5510c728f0..4ed7cd1cdb 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:24+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: 2010-10-03 20:55:43+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po index b44f97ed16..898e12dcdb 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/pt/LC_MESSAGES/Comet.po b/plugins/Comet/locale/pt/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..eacca9a64d --- /dev/null +++ b/plugins/Comet/locale/pt/LC_MESSAGES/Comet.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - Comet to Portuguese (Português) +# Expored from translatewiki.net +# +# Author: GTNS +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:24+0000\n" +"Language-Team: Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-09 14:34:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt\n" +"X-Message-Group: #out-statusnet-plugin-comet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "" +"Plugin para fazer actualizações em \"tempo real\" utilizando Comet/Bayeux." diff --git a/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po b/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po index 624248095f..756de597b8 100644 --- a/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:24+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po index 07a1722b85..7a43d09df9 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:24+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:07:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po index c58aab85c6..414fe3a2ff 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po index b6b4beb58e..fad01e27a3 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po b/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po index ce870624c3..2aacc71b45 100644 --- a/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-01 20:37:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:34:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/DirectionDetector/locale/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index 2ffb4e0baa..4956f8a2a7 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: 2010-10-19 23:00+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/de/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po index b63088f387..cfb749608c 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:08+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:24+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-19 23:49:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po index 02d6a1c03a..2298cd3d37 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:08+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:24+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-19 23:49:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po index a6fb99dcf2..b2baf93702 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:08+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-19 23:49:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po index 1245e39e64..d9b683148c 100644 --- a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:08+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-19 23:49:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po index 6d54005a3d..113fe619a7 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:08+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-19 23:49:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po index 56cefc597b..f5bcf4d502 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:09+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-19 23:49:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 ded19689ba..a3b9edfc37 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:09+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-19 23:49:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 25868fa97e..640d09ab63 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:09+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-19 23:49:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po index 8176955314..8a627fdc15 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:09+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-19 23:49:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po index e939fc1ae7..3c7f9ff396 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:09+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+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: 2010-10-18 20:29:07+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-19 23:49:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po index ebe5d42b27..d6c654f5c9 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:09+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+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: 2010-10-18 20:29:07+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-19 23:49:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po new file mode 100644 index 0000000000..88510e86aa --- /dev/null +++ b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - DirectionDetector to Portuguese (Português) +# Expored from translatewiki.net +# +# Author: GTNS +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DirectionDetector\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" +"Language-Team: Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-19 23:49:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt\n" +"X-Message-Group: #out-statusnet-plugin-directiondetector\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DirectionDetectorPlugin.php:264 +msgid "Shows notices with right-to-left content in correct direction." +msgstr "" +"Mostra mensagens com conteúdo da direita para a esquerda na direcção " +"correcta." diff --git a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po index 94e35b1107..4779335932 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:09+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-19 23:49:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po index e38e425be4..4b688a6d34 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:09+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-19 23:49:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po index 067080b70b..c1d1c141e2 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:09+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-19 23:49:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 a501d4f6a9..8102be8d61 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:09+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-18 20:29:07+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-19 23:49:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DiskCache/locale/DiskCache.pot b/plugins/DiskCache/locale/DiskCache.pot index 7f5f4e7121..5db3bea046 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/de/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po new file mode 100644 index 0000000000..cd5713c30d --- /dev/null +++ b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - DiskCache to German (Deutsch) +# Expored from translatewiki.net +# +# Author: Apmon +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DiskCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" +"Language-Team: German \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: de\n" +"X-Message-Group: #out-statusnet-plugin-diskcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DiskCachePlugin.php:175 +msgid "Plugin to implement cache interface with disk files." +msgstr "" +"Plugin zur Implementierung einer festplatten basierten Cache-Schnittstelle" diff --git a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po index e43e639fc9..b2da429e44 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po index 618a665e9e..41e6449c35 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po index a2e46af9b6..768c0f5e9c 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po index d4d21b5927..dbb0790914 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:44+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 bc62e4ee54..7d7463d185 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po index fe98e76337..a448bc957e 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+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: 2010-10-09 14:34:37+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po index 27bc10aae9..310cc13b51 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po new file mode 100644 index 0000000000..fd6f6c65cc --- /dev/null +++ b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - DiskCache to Portuguese (Português) +# Expored from translatewiki.net +# +# Author: Hamilton Abreu +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DiskCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" +"Language-Team: Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt\n" +"X-Message-Group: #out-statusnet-plugin-diskcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DiskCachePlugin.php:175 +msgid "Plugin to implement cache interface with disk files." +msgstr "" +"Plugin para implementar a interface entre a cache e os ficheiros em disco." diff --git a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po index c051259a9d..b1d4eadf52 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-09 14:34:37+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po index 487ee1d8c9..9d5e4dc3be 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:44+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po index 6453395377..3bb2a15491 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po index 7f54aa1ce6..e892cd1422 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 dec1b90412..9005233ae9 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-03 20:55:44+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot index 4b9b2b2cc6..de30352500 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/br/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po index 0a64e7e0e7..caafa7ba82 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:26+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po index f9fd0aa429..12efd0c572 100644 --- a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:44+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:26+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:34:40+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po index 3d49a5d974..f476e13281 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:26+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po index 168407448b..e08fbdd9f2 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:28+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:26+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:45+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po index e1a69f75c1..8fcb80b117 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po index 5bfb4d394a..939754010d 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po index 251eccddd7..b89c174520 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-09 14:34:40+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po index 46f0c31038..58ae3ada62 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po index f37f2d2365..44ce4130e7 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:28+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:26+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:45+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po index c5c76008c4..643df11d28 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:26+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po index e7a581fe5f..b85aed8fe5 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 6dc7ba4e62..f5e192ce14 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:28+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-03 20:55:45+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Echo/locale/Echo.pot b/plugins/Echo/locale/Echo.pot index f58ab18039..e7599ae4ba 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/br/LC_MESSAGES/Echo.po b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po index 8e4497c65d..23da4d8b7f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po index 2a4d9ca31e..eeff21de78 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:34:40+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po index 518984e3d7..a38efaeec0 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po index b0508f8d9b..4f7356944e 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:28+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:45+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 ad343e0488..0e1bbe6b6a 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po index aaf555c0fe..6b33b40d56 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po index 70823beb7e..34c35d963d 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:28+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:45+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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/mk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po index b5aa39c1f9..62662cc4ad 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po index 9f945e9a64..bf045b0cb5 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po index b558e09ea4..b196eea070 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po index 2d6b7f6290..9a6d5c1c13 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:28+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:45+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 98ff588e53..1f1f669829 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-09 14:34:40+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po index 82a14dd561..5d6071bba8 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po index 3fb5f1a4ab..89e9fe90b9 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po index 01f9dc5ef1..4921b617c9 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 a1ae2a9e34..189352ba18 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/EmailAuthentication/locale/EmailAuthentication.pot b/plugins/EmailAuthentication/locale/EmailAuthentication.pot index 654ad59697..c05a4642fc 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/br/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po index 155b527ca2..f7d14675ca 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:34:42+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po index 22d4a3e160..27e2ca8d2e 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:34:42+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po index 901bb21afb..31becdec21 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po index 76579f86f9..cf3b0069ab 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po index 36a70a3731..768fb5d64a 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po index e42ce6a643..8285d5ab8f 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:29+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 32857987e9..a4ae491b24 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 e537f1d279..ae5a226650 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po index cd91edc097..011c19200d 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po index 1a9e8b58ec..c5ec8943d7 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po index 3f613486b5..b7abaee847 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:28+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 c9554d2663..f1512ad1ec 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:28+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:34:42+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po index a6f1c92fa4..412d534664 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po index e2a1f52fde..ad6f1d440b 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:28+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po index bb48f9c1da..749bc57920 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:28+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 19906597e5..c837ce7193 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-09-27 23:18:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/Facebook/locale/Facebook.pot b/plugins/Facebook/locale/Facebook.pot index 9a6cdc8326..b939392990 100644 --- a/plugins/Facebook/locale/Facebook.pot +++ b/plugins/Facebook/locale/Facebook.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/Facebook/locale/br/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po index fa1594ab86..cb73ace8ea 100644 --- a/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:54+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:34+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:34:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/de/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/de/LC_MESSAGES/Facebook.po index ba7c15f967..6293a7af83 100644 --- a/plugins/Facebook/locale/de/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/de/LC_MESSAGES/Facebook.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:58+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:34+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-20 17:54:47+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po index ade12e83ab..8bb4e4fbce 100644 --- a/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:34+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po index c2d798d9d7..d62550a39d 100644 --- a/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:59+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-20 17:54:47+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po index a4cbfe32fa..13478bc0f1 100644 --- a/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:59+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:34+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-20 17:54:47+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po index 39e66eae37..00153ab2f9 100644 --- a/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:20+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po index ae4d971a43..b663b17c58 100644 --- a/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:20+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:34+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po index 2cfa7dfc00..d353022321 100644 --- a/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:04:59+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:35+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: 2010-10-20 17:54:47+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po index c9ad7ee957..5b60c244d1 100644 --- a/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:20+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:08+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po index bfdfe51154..88b3ea2d1e 100644 --- a/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:35+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:34:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po index f1a09ddfb0..c8fbf25fe8 100644 --- a/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:35+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:34:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po index 6a9a7b5148..058733a1f8 100644 --- a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-20 00:18+0000\n" -"PO-Revision-Date: 2010-10-20 00:20:57+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-19 23:49:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po index 57f45fc8c4..03f85020c6 100644 --- a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:36+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/FirePHP/locale/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index fa3c43f282..103df7a8ee 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/es/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po index 99eb31c5ce..b0e339f1df 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:36+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po index a7bae2b5e3..924cf0bbb2 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:36+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 b53390d4b0..751e317c24 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po index bd26e50b7b..f39174cb69 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po index eba434fc1d..25b36189d0 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:36+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:47+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 d2aea2bbb6..bd5a8ac1c0 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:36+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 d99a7ababa..49af3aad99 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po index b1c0bdd080..88abff3daa 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:36+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: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po index 39167e2c7f..e7a259e4bd 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po index 5ed7be0d61..acc0ef4d47 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:36+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 87008b2bd5..aefa7e1e85 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:36+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po index ded26687e8..f7509ce59d 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:36+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po index 10883a657c..a109073a94 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 bce278fba7..294ee96b6c 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:38+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:36+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:47+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FollowEveryone/FollowEveryonePlugin.php b/plugins/FollowEveryone/FollowEveryonePlugin.php new file mode 100644 index 0000000000..228efc9357 --- /dev/null +++ b/plugins/FollowEveryone/FollowEveryonePlugin.php @@ -0,0 +1,206 @@ +. + * + * @category Community + * @package StatusNet + * @author Evan Prodromou + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Plugin to make all users follow each other at registration + * + * Users can unfollow afterwards if they want. + * + * @category Sample + * @package StatusNet + * @author Evan Prodromou + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class FollowEveryonePlugin extends Plugin +{ + /** + * Called when a new user is registered. + * + * We find all users, and try to subscribe them to the new user, and + * the new user to them. Exceptions (like silenced users or whatever) + * are caught, logged, and ignored. + * + * @param Profile &$newProfile The new user's profile + * @param User &$newUser The new user + * + * @return boolean hook value + * + */ + function onEndUserRegister(&$newProfile, &$newUser) + { + $otherUser = new User(); + $otherUser->whereAdd('id != ' . $newUser->id); + + if ($otherUser->find()) { + while ($otherUser->fetch()) { + $otherProfile = $otherUser->getProfile(); + try { + if (User_followeveryone_prefs::followEveryone($otherUser->id)) { + Subscription::start($otherProfile, $newProfile); + } + Subscription::start($newProfile, $otherProfile); + } catch (Exception $e) { + common_log(LOG_WARNING, $e->getMessage()); + continue; + } + } + } + + $ufep = new User_followeveryone_prefs(); + + $ufep->user_id = $newUser->id; + $ufep->followeveryone = true; + + $ufep->insert(); + + return true; + } + + /** + * Database schema setup + * + * Plugins can add their own tables to the StatusNet database. Plugins + * should use StatusNet's schema interface to add or delete tables. The + * ensureTable() method provides an easy way to ensure a table's structure + * and availability. + * + * By default, the schema is checked every time StatusNet is run (say, when + * a Web page is hit). Admins can configure their systems to only check the + * schema when the checkschema.php script is run, greatly improving performance. + * However, they need to remember to run that script after installing or + * upgrading a plugin! + * + * @see Schema + * @see ColumnDef + * + * @return boolean hook value; true means continue processing, false means stop. + */ + function onCheckSchema() + { + $schema = Schema::get(); + + // For storing user-submitted flags on profiles + + $schema->ensureTable('user_followeveryone_prefs', + array(new ColumnDef('user_id', 'integer', null, + true, 'PRI'), + new ColumnDef('followeveryone', 'tinyint', null, + false, null, 1))); + + 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 'User_followeveryone_prefs': + include_once $dir . '/'.$cls.'.php'; + return false; + default: + return true; + } + } + + /** + * Show a checkbox on the profile form to ask whether to follow everyone + * + * @param Action $action The action being executed + * + * @return boolean hook value + */ + function onEndProfileFormData($action) + { + $user = common_current_user(); + + $action->elementStart('li'); + // TRANS: Checkbox label in form for profile settings. + $action->checkbox('followeveryone', _('Follow everyone'), + ($action->arg('followeveryone')) ? + $action->arg('followeveryone') : + User_followeveryone_prefs::followEveryone($user->id)); + $action->elementEnd('li'); + + return true; + } + + /** + * Save checkbox value for following everyone + * + * @param Action $action The action being executed + * + * @return boolean hook value + */ + function onEndProfileSaveForm($action) + { + $user = common_current_user(); + + User_followeveryone_prefs::savePref($user->id, + $action->boolean('followeveryone')); + + return true; + } + + /** + * Provide version information about this plugin. + * + * @param Array &$versions Array of version data + * + * @return boolean hook value + * + */ + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'FollowEveryone', + 'version' => STATUSNET_VERSION, + 'author' => 'Evan Prodromou', + 'homepage' => 'http://status.net/wiki/Plugin:FollowEveryone', + 'rawdescription' => + _m('New users follow everyone at registration and are followed in return.')); + return true; + } +} diff --git a/plugins/FollowEveryone/User_followeveryone_prefs.php b/plugins/FollowEveryone/User_followeveryone_prefs.php new file mode 100644 index 0000000000..7690fd220a --- /dev/null +++ b/plugins/FollowEveryone/User_followeveryone_prefs.php @@ -0,0 +1,164 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2009, StatusNet, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; + +/** + * Data class for counting greetings + * + * We use the DB_DataObject framework for data classes in StatusNet. Each + * table maps to a particular data class, making it easier to manipulate + * data. + * + * Data classes should extend Memcached_DataObject, the (slightly misnamed) + * extension of DB_DataObject that provides caching, internationalization, + * and other bits of good functionality to StatusNet-specific data classes. + * + * @category Action + * @package StatusNet + * @author Evan Prodromou + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * @see DB_DataObject + */ +class User_followeveryone_prefs extends Memcached_DataObject +{ + public $__table = 'user_followeveryone_prefs'; // table name + public $user_id; // int(4) primary_key not_null + public $followeveryone; // tinyint(1) + + /** + * Get an instance by key + * + * This is a utility method to get a single instance with a given key value. + * + * @param string $k Key to use to lookup (usually 'user_id' for this class) + * @param mixed $v Value to lookup + * + * @return User_followeveryone_prefs object found, or null for no hits + */ + function staticGet($k, $v=null) + { + return Memcached_DataObject::staticGet('User_followeveryone_prefs', $k, $v); + } + + /** + * return table definition for DB_DataObject + * + * DB_DataObject needs to know something about the table to manipulate + * instances. This method provides all the DB_DataObject needs to know. + * + * @return array array of column definitions + */ + function table() + { + return array('user_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + 'followeveryone' => DB_DATAOBJECT_INT + DB_DATAOBJECT_BOOL); + } + + /** + * return key definitions for DB_DataObject + * + * DB_DataObject needs to know about keys that the table has, since it + * won't appear in StatusNet's own keys list. In most cases, this will + * simply reference your keyTypes() function. + * + * @return array list of key field names + */ + function keys() + { + return array_keys($this->keyTypes()); + } + + /** + * return key definitions for Memcached_DataObject + * + * Our caching system uses the same key definitions, but uses a different + * method to get them. This key information is used to store and clear + * cached data, so be sure to list any key that will be used for static + * lookups. + * + * @return array associative array of key definitions, field name to type: + * '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('user_id' => 'K'); + } + + /** + * Magic formula for non-autoincrementing integer primary keys + * + * If a table has a single integer column as its primary key, DB_DataObject + * assumes that the column is auto-incrementing and makes a sequence table + * to do this incrementation. Since we don't need this for our class, we + * overload this method and return the magic formula that DB_DataObject needs. + * + * @return array magic three-false array that stops auto-incrementing. + */ + function sequenceKey() + { + return array(false, false, false); + } + + static function followEveryone($user_id) + { + $ufep = self::staticGet('user_id', $user_id); + + if (empty($ufep)) { + return true; + } else { + return (bool)$ufep->followeveryone; + } + } + + static function savePref($user_id, $followEveryone) + { + $ufep = self::staticGet('user_id', $user_id); + + if (empty($ufep)) { + $ufep = new User_followeveryone_prefs(); + $ufep->user_id = $user_id; + $ufep->followeveryone = $followEveryone; + $ufep->insert(); + } else { + $orig = clone($ufep); + $ufep->followeveryone = $followEveryone; + $ufep->update(); + } + + return true; + } +} diff --git a/plugins/FollowEveryone/locale/FollowEveryone.pot b/plugins/FollowEveryone/locale/FollowEveryone.pot new file mode 100644 index 0000000000..7531677df4 --- /dev/null +++ b/plugins/FollowEveryone/locale/FollowEveryone.pot @@ -0,0 +1,21 @@ +# 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: 2010-10-27 23:43+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" + +#: FollowEveryonePlugin.php:203 +msgid "New users follow everyone at registration and are followed in return." +msgstr "" diff --git a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po new file mode 100644 index 0000000000..fdb2571c7d --- /dev/null +++ b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - FollowEveryone to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FollowEveryone\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:10:36+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-28 00:08:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-followeveryone\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: FollowEveryonePlugin.php:203 +msgid "New users follow everyone at registration and are followed in return." +msgstr "Nove usatores seque omnes al inscription e es sequite per omnes." diff --git a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po new file mode 100644 index 0000000000..1930d6658a --- /dev/null +++ b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - FollowEveryone to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FollowEveryone\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:10:36+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-28 00:08:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-followeveryone\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: FollowEveryonePlugin.php:203 +msgid "New users follow everyone at registration and are followed in return." +msgstr "Новите корисници следат секого при регистрација и сите ги следат нив." diff --git a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po new file mode 100644 index 0000000000..55dcb2325c --- /dev/null +++ b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - FollowEveryone to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FollowEveryone\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:10:37+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-28 00:08:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-followeveryone\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: FollowEveryonePlugin.php:203 +msgid "New users follow everyone at registration and are followed in return." +msgstr "" +"Nieuwe gebruikers volgen iedereen bij inschrijving en worden door iedereen " +"gevolgd." diff --git a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po new file mode 100644 index 0000000000..0db1e6ca31 --- /dev/null +++ b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - FollowEveryone to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FollowEveryone\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:10:37+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-28 00:08:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-followeveryone\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" + +#: FollowEveryonePlugin.php:203 +msgid "New users follow everyone at registration and are followed in return." +msgstr "" +"Нові користувачі автоматично підписуються до всіх після реєстрації, а всі " +"решта автоматично підписуються навзаєм." diff --git a/plugins/ForceGroup/locale/ForceGroup.pot b/plugins/ForceGroup/locale/ForceGroup.pot index f8306640c0..45c16c374b 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/de/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po index b435b0cb94..78fcd6652e 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:57+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:37+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:35:47+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po index 7f9c5d2454..5d0b89de8e 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:37+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:23+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po index 5c88ead802..e5a7a98ef8 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:38+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:37+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:47+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po index 18a728c659..4615c8a765 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:37+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:23+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po index f48744a6ed..6f27d4d7f2 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:38+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:37+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:47+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 0f1f88e7e1..c3e122374f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:37+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:23+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po index a2f21de447..c8d33bf416 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:37+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:23+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po index 6b755c3e2d..7542262e8f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:23+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po index bd693e7ef2..b6c022da6a 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:23+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/GeoURL/locale/GeoURL.pot b/plugins/GeoURL/locale/GeoURL.pot index 9b32cebd78..bbc9794722 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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 0184b844d4..1d8422cadf 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:59+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:38+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:35:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po new file mode 100644 index 0000000000..e9538a3c4e --- /dev/null +++ b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GeoURL to German (Deutsch) +# Expored from translatewiki.net +# +# Author: Apmon +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GeoURL\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:38+0000\n" +"Language-Team: German \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-23 18:57:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: de\n" +"X-Message-Group: #out-statusnet-plugin-geourl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeoURLPlugin.php:124 +msgid "" +"Ping GeoURL when new geolocation-enhanced " +"notices are posted." +msgstr "" +"Ping GeoURL wenn neue georeferenzierte " +"Notizen gepostet werden." diff --git a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po index 0ba3259f61..85128656fc 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:38+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 4d2211fd0e..a82690874c 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:38+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po index 4dff863f19..f8d3d1f19f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:38+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po index bd29feced9..f51b2abe7c 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:38+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po index 7bcabafabc..b98d0bcd83 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:39+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 0055bcfaea..adc499bdf9 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po index d07783c120..3a6f629b76 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-09 14:35:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po index b4cc4d4e73..37804acdd8 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po index 40096e91d8..8341672f2d 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:06+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po new file mode 100644 index 0000000000..8ac714a842 --- /dev/null +++ b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GeoURL to Portuguese (Português) +# Expored from translatewiki.net +# +# Author: GTNS +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GeoURL\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" +"Language-Team: Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-23 18:57:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt\n" +"X-Message-Group: #out-statusnet-plugin-geourl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeoURLPlugin.php:124 +msgid "" +"Ping GeoURL when new geolocation-enhanced " +"notices are posted." +msgstr "" +"Fazer \"ping\" ao GeoURL quando forem " +"enviadas mensagens com indicação da localização geográfica." diff --git a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po index e63b2f2a54..5aa09f7e66 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:39+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po index da00c34497..dc75c40932 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po index f0b54398f0..7c7aab1b00 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/Geonames/locale/Geonames.pot b/plugins/Geonames/locale/Geonames.pot index 657b960506..167ca6246a 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/br/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po index cf5fba1351..d124113c96 100644 --- a/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:37+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po index 247722f625..6796fe4cca 100644 --- a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:58+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:37+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:35:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..9d9bc875d6 --- /dev/null +++ b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Geonames to German (Deutsch) +# Expored from translatewiki.net +# +# Author: Apmon +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:37+0000\n" +"Language-Team: German \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: de\n" +"X-Message-Group: #out-statusnet-plugin-geonames\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"Verwendet den GeoNames-Dienst um Namen " +"für die vom Benutzer durch Koordinaten angegebenen Standorte zu erlangen." diff --git a/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po index 55ac440db8..ae31a5a7f4 100644 --- a/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:37+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po index ad3841c949..1e944a7519 100644 --- a/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:37+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po index 8deaeed650..5f4497dd7f 100644 --- a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:37+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po index a367b58227..098296aa48 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:37+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po index af2520d295..d8fb156128 100644 --- a/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:39+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:38+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\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 b57e675b4e..245797d58d 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:38+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po index 7cf63717d9..f2901df916 100644 --- a/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po index b8358b781a..49e041f698 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:38+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..50ab315ed0 --- /dev/null +++ b/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Geonames to Portuguese (Português) +# Expored from translatewiki.net +# +# Author: Hamilton Abreu +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:38+0000\n" +"Language-Team: Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt\n" +"X-Message-Group: #out-statusnet-plugin-geonames\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"Usa o serviço Geonames para apresentar " +"os nomes de locais com base em dados de latitude/longitude fornecidos pelo " +"utilizador." diff --git a/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po index fc7f46db50..1003df283f 100644 --- a/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:42:58+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:38+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:35:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po index 1387047e64..30fa3cb03b 100644 --- a/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:38+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po index 269a774343..6e57b711ac 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:38+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po index 1ee4b40eb5..6bfb1833e4 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:38+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po index 09a9784702..23b3968236 100644 --- a/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot index e5b4c0edfe..a55e781c84 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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 e26298b0f8..fbc66c7674 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:05+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:35:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po index 36ccea9c7b..5e3b1c570d 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po index e644dc6a20..ccf5f0877b 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po index 3cadef7b01..bbb0299652 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po index 8cfd6120b9..213dd1caa3 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:40+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 20d4cf633c..1c14e520ee 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po index 3362bac5bf..ba6f82235d 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-09-27 23:18:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po index bb141be175..7fed03edff 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po new file mode 100644 index 0000000000..d0df5ba9eb --- /dev/null +++ b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GoogleAnalytics to Portuguese (Português) +# Expored from translatewiki.net +# +# Author: GTNS +# -- +# 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: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" +"Language-Team: Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt\n" +"X-Message-Group: #out-statusnet-plugin-googleanalytics\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GoogleAnalyticsPlugin.php:80 +msgid "" +"Use Google Analytics to " +"track web access." +msgstr "" +"Usar o Google Analytics " +"para rastrear o acesso à web." diff --git a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po index d9810207d6..6d33d6f900 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:05+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-09 14:35:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po index 45422ecce0..8de492f44c 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po index 6fd585c8e2..f54433293f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po index 49a20f2fe9..1d2b07adb6 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:39+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 b7d5c2bba9..0d91566fe7 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-09-27 23:18:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/Gravatar/GravatarPlugin.php b/plugins/Gravatar/GravatarPlugin.php index dd8ff72176..5fcc79fd51 100644 --- a/plugins/Gravatar/GravatarPlugin.php +++ b/plugins/Gravatar/GravatarPlugin.php @@ -183,7 +183,7 @@ class GravatarPlugin extends Plugin function gravatar_url($email, $size) { - $url = "http://www.gravatar.com/avatar.php?gravatar_id=". + $url = "https://secure.gravatar.com/avatar.php?gravatar_id=". md5(strtolower($email)). "&default=".urlencode(Avatar::defaultImage($size)). "&size=".$size; diff --git a/plugins/Gravatar/locale/Gravatar.pot b/plugins/Gravatar/locale/Gravatar.pot index 5cba76d9b9..effc232745 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/de/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po new file mode 100644 index 0000000000..5a6317a9ad --- /dev/null +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -0,0 +1,78 @@ +# Translation of StatusNet - Gravatar to German (Deutsch) +# Expored from translatewiki.net +# +# Author: Apmon +# Author: The Evil IP address +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Gravatar\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:40+0000\n" +"Language-Team: German \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-23 18:57:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: de\n" +"X-Message-Group: #out-statusnet-plugin-gravatar\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GravatarPlugin.php:60 +msgid "Set Gravatar" +msgstr "" + +#: GravatarPlugin.php:63 +msgid "If you want to use your Gravatar image, click \"Add\"." +msgstr "" +"Falls Sie Ihr Gravatar Bild verwenden wollen, klicken sie \"Hinzufügen\"" + +#: GravatarPlugin.php:68 +msgid "Add" +msgstr "Hinzufügen" + +#: GravatarPlugin.php:78 +msgid "Remove Gravatar" +msgstr "Gravatar löschen" + +#: GravatarPlugin.php:81 +msgid "If you want to remove your Gravatar image, click \"Remove\"." +msgstr "" +"Falls Sie Ihr Gravatar Bild entfernen wollen, klicken sie \"Entfernen\"" + +#: GravatarPlugin.php:86 +msgid "Remove" +msgstr "Entfernen" + +#: GravatarPlugin.php:91 +msgid "To use a Gravatar first enter in an email address." +msgstr "" +"Um einen Gravatar zuverwenden geben Sie zunächst in eine E-Mail-Adresse ein." + +#: GravatarPlugin.php:140 +msgid "You do not have an email address set in your profile." +msgstr "" + +#: GravatarPlugin.php:158 +msgid "Failed to save Gravatar to the database." +msgstr "" + +#: GravatarPlugin.php:162 +msgid "Gravatar added." +msgstr "Gravatar hinzugefügt." + +#: GravatarPlugin.php:180 +msgid "Gravatar removed." +msgstr "Gravatar entfernt." + +#: GravatarPlugin.php:200 +msgid "" +"The Gravatar plugin allows users to use their Gravatar with StatusNet." +msgstr "" +"Das Gravatar-Plugin erlaubt es Benutzern, ihr Gravatar mit StatusNet zu verwenden." diff --git a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po index 918475de54..4919dc5173 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:40+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po index 3e51cc37d8..a76eb5628c 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:40+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:35:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po new file mode 100644 index 0000000000..5abc806c74 --- /dev/null +++ b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po @@ -0,0 +1,74 @@ +# Translation of StatusNet - Gravatar to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Gravatar\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:40+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-23 18:57:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-gravatar\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GravatarPlugin.php:60 +msgid "Set Gravatar" +msgstr "Stabilir Gravatar" + +#: GravatarPlugin.php:63 +msgid "If you want to use your Gravatar image, click \"Add\"." +msgstr "Si tu vole usar tu imagine Gravatar, clicca \"Adder\"." + +#: GravatarPlugin.php:68 +msgid "Add" +msgstr "Adder" + +#: GravatarPlugin.php:78 +msgid "Remove Gravatar" +msgstr "Remover Gravatar" + +#: GravatarPlugin.php:81 +msgid "If you want to remove your Gravatar image, click \"Remove\"." +msgstr "Si tu vole remover tu imagine Gravatar, clicca \"Remover\"." + +#: GravatarPlugin.php:86 +msgid "Remove" +msgstr "Remover" + +#: GravatarPlugin.php:91 +msgid "To use a Gravatar first enter in an email address." +msgstr "Pro usar un Gravatar, entra primo un adresse de e-mail." + +#: GravatarPlugin.php:140 +msgid "You do not have an email address set in your profile." +msgstr "Tu non ha un adresse de e-mail definite in tu profilo." + +#: GravatarPlugin.php:158 +msgid "Failed to save Gravatar to the database." +msgstr "Falleva de salveguardar le Gravatar in le base de datos." + +#: GravatarPlugin.php:162 +msgid "Gravatar added." +msgstr "Gravatar addite." + +#: GravatarPlugin.php:180 +msgid "Gravatar removed." +msgstr "Gravatar removite." + +#: GravatarPlugin.php:200 +msgid "" +"The Gravatar plugin allows users to use their Gravatar with StatusNet." +msgstr "" +"Le plug-in Gravatar permitte al usatores de usar lor Gravatar con StatusNet." diff --git a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po index 6b8fb1bbcc..3b4099f772 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:40+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po index 8115b736f8..c5ad94bc22 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:40+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po index b7efbb0391..c04946712b 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:40+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:35:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po index 8607059718..ace9256a23 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:40+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:35:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 d76b123cf3..2f775acb66 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:40+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po index f8ac9f88df..bff03bb248 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:41+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 906b171b9f..2bb4cafd27 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-01 20:38:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/GroupFavorited/locale/GroupFavorited.pot b/plugins/GroupFavorited/locale/GroupFavorited.pot index 52ca20d890..c6c2f11145 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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 c86cfb63c9..7362f0505a 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:12+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:41+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po index 2b3847f811..c820c89e15 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:08+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:41+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:35:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po index 6b57a88371..6af511ae6a 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:49+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:41+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po index 3480193d80..9cfb10efc8 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:42+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:41+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:07:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po index 3d1b3e15fa..03eb3e3da4 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:49+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:41+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po index 48dc76c7ad..1d1a43a0d0 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:49+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:41+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po index 85074b7aec..1d8a2b57ec 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:49+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po index cacd7db975..63e84c4532 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:08+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:41+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:35:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po index deaa8b09cf..31a1077bd1 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:49+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:41+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po index 850263fc14..d0a44340a8 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:49+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:41+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/Imap/locale/Imap.pot b/plugins/Imap/locale/Imap.pot index 0174c463fe..3022e7508f 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po index c2d47967df..30db6f5d1a 100644 --- a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:42+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po index cce0fbb3d8..c55cd97eb3 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:42+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po index 220519b4c4..19a65b77b8 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:42+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po index 175a813b06..f4ca40bea3 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:42+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: 2010-10-03 20:55:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po index 84bc8a93c3..2b1b4da615 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:42+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po index 0c9b88be1d..346b2e984c 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:42+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po index 241c50bc77..71f6b6e326 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:42+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po index d489f62f08..4f7f6d941c 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:42+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 b0eb61c508..50035b6ef7 100644 --- a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:42+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:52+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/InfiniteScroll/locale/InfiniteScroll.pot b/plugins/InfiniteScroll/locale/InfiniteScroll.pot index 59ff310ae6..3bf50af6c7 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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 122397a5d4..10157cea5d 100644 --- a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:09+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:35:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po index 0dfb2ddfe3..dba4e7a682 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po index be488f73a2..1ddbc95efd 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po index 613eb1e5af..d032ae0243 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po index 7a6569eb47..f1f245c705 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 450a69c83b..d784f00429 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 bf70e304a7..e4ec8aa951 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po index 02d120a256..f63c7e11d6 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:09+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+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: 2010-10-09 14:35:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po index 55c40e9f61..c1a780d93e 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-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 23856193c8..1eede745da 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po index 8619644b03..bd6026f5c7 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po index e82745a2c5..02005e7268 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po index 8948fdba66..d45da0d063 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 cb6aa99f96..b31f8cc119 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/LdapAuthentication/locale/LdapAuthentication.pot b/plugins/LdapAuthentication/locale/LdapAuthentication.pot index 4edbf7303d..50910f0cf4 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/es/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po index 4ab4ea6190..112767e3c5 100644 --- a/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po index 4eeb05da73..e253e3cc56 100644 --- a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po index be4c697f3d..44d9f7754a 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po index 0c51cd2f1e..2d6a1c21fc 100644 --- a/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:44+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po index 0eff138319..71411ac0b7 100644 --- a/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\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 b121de304b..0c89a4e162 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po index dd3ceb8edc..da3a6b13df 100644 --- a/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-09-27 23:18:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po index b31afe58bc..7c0a0bf606 100644 --- a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:43+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po index 561d4ee1b5..775771fbce 100644 --- a/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:44+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:44+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po index 21c6e21ae0..f26eed8244 100644 --- a/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:44+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po index 51ee5d68ac..9348e2a2e2 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:44+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po index 7ea723b674..c4a69913b5 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:44+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po index 8ffeb1aa78..82c98ab215 100644 --- a/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:44+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:44+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthorization/locale/LdapAuthorization.pot b/plugins/LdapAuthorization/locale/LdapAuthorization.pot index 5522ba4fe8..69eab94189 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/es/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po index 7ea15395f5..70b55b5d4e 100644 --- a/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:44+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po index 8ade16ce21..82247686ad 100644 --- a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:44+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po index ae34871aff..53b32ea6da 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:44+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po index 059ff89e57..96ec5f0e0a 100644 --- a/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:44+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:44+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\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 9511d5597a..96839a9e74 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:44+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po index 3385768a49..a10743c31c 100644 --- a/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-09-27 23:18:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po index 034a0cee91..5316359f42 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:44+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po index 0bbd6c0d45..7533749bc7 100644 --- a/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:44+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:44+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po index f366956e69..2f2ad60614 100644 --- a/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:44+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po index 683885f16a..931fc5f2d2 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:44+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po index e8ef754ddf..f24f88ca82 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:44+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po index 8c490e8911..9aca83b807 100644 --- a/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:44+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:35:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LilUrl/locale/LilUrl.pot b/plugins/LilUrl/locale/LilUrl.pot index 1904dc00c4..7307eb50d4 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/fr/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po index 9594e83542..6d439aa236 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:24+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po index a1a3601018..617ff6d298 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:24+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po index 4e28c03c04..225311f797 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:24+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 97261be9fd..03da051996 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:24+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 7a09a9df6e..b486c6df8e 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:24+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po index 4699be8b21..86599dda43 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+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: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:24+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po index a139c9d4f9..ddef1ba3bc 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:24+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po index 1523fd5cd5..3552557bd9 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:24+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po index f7dfe8a18f..fb855dac01 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:24+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po index 5eb5059c6a..d3374ae897 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:24+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 68946ee353..04127ea461 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:24+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index 558e1854e4..47563b5240 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/de/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po index daecb66542..7a357b600b 100644 --- a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:13+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:26+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po index dec449471c..97fe66283a 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po index 525c681dc3..320273d9ce 100644 --- a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po index 46c10ff826..42e733b64f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po index b92f116a75..d3336939ab 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 3f45b8dd96..4bbeafbac9 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po index cc12672884..5252509af1 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:46+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: 2010-09-27 23:19:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po index 9d923ba79a..3d8cbb6bf4 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:45+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po index 303a67687f..8bab940ddd 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:46+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po index f61749d75d..a72b86b055 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:46+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po index 6a2b00d9ba..f08a03171e 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:46+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 944eb8a4b3..bf62fa13b9 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:46+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Mapstraction/MapstractionPlugin.php b/plugins/Mapstraction/MapstractionPlugin.php index c4ba6464ea..08465e0a77 100644 --- a/plugins/Mapstraction/MapstractionPlugin.php +++ b/plugins/Mapstraction/MapstractionPlugin.php @@ -125,7 +125,7 @@ class MapstractionPlugin extends Plugin urlencode($this->apikey))); break; case 'microsoft': - $action->script('http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6'); + $action->script((StatusNet::isHTTPS()?'https':'http') + '://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6'); break; case 'openlayers': // XXX: is this not nice...? diff --git a/plugins/Mapstraction/locale/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index 3768a067d7..292a541c0b 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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 c59ff853cf..6552915b9e 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:19+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:46+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index 4b8b5c0821..0299a5d153 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:14+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:46+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:26+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po index 665c091776..8e6007152c 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 971db7b72e..a75da34ec6 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:10:44+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po index 016214c72d..5df0d1404a 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po index 23f602b523..72249a6548 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:10:44+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po index 9bdb2deaf4..cf7be70ab9 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:10:44+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po index b92202a575..b478de888e 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+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: 2010-10-09 14:36:26+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po index 6fe27a13cd..fdc68490e6 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:10:44+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po index 5cb73b3e9e..93ad72cc32 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po index 88ffdf6a26..3011173480 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: Tamil \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:10:44+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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/tl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po index 7aefcd55e8..49d27836b6 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:10:44+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po index f2d3afef91..9a43d791e5 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:10:44+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 fceb988550..47f07d1597 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:10:44+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Memcache/locale/Memcache.pot b/plugins/Memcache/locale/Memcache.pot index f6f498245b..25840ef9b1 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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 new file mode 100644 index 0000000000..2b8a4bbb9c --- /dev/null +++ b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcache to German (Deutsch) +# Expored from translatewiki.net +# +# Author: Apmon +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" +"Language-Team: German \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-23 18:57:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: de\n" +"X-Message-Group: #out-statusnet-plugin-memcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MemcachePlugin.php:246 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Verwende Memcached um Anfragen " +"zwischenzuspeichern" diff --git a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po index 21dc686909..b026346af6 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po index b3c4d8bd3c..db5656dc8a 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po index 8035bdb468..c73108f24c 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po index 489434f785..3ae092fa49 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po index 8cb0896c94..3c03812bc5 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+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: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po index 2f0ddbffcd..35d2c9951f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po index b8936671bf..04126e3e3b 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 b5c99a581e..5a35c7392f 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po index 94d0d27a75..a8faadaea0 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po new file mode 100644 index 0000000000..2450f08100 --- /dev/null +++ b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcache to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:47+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-23 18:57:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-memcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MemcachePlugin.php:246 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Gamitin ang Memcached upang itago ang " +"mga resulta ng pagtatanong." diff --git a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po index afaef9b2c9..c73c7a4893 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:48+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 06d4e23f21..8ec452f5ed 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:48+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:48+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcached/locale/Memcached.pot b/plugins/Memcached/locale/Memcached.pot index c349786794..7709827e5e 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/es/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po index e7473802d6..343d5d0a57 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:48+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po index 7b0edf91e9..18eee7f967 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:48+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po index 9f043fa4a2..58e1b23a62 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:48+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po index c6692dd602..67d0598143 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:48+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:48+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:58:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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/mk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po index 5062665abd..254f084168 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:48+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po index 72775e02c3..0fce002b0f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-09-27 23:19:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po index ebd7c25cbb..22fdf01f68 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:48+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po index 396b50dfc0..76d968459c 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:48+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\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 1cc22c363c..0525c6800d 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:48+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po new file mode 100644 index 0000000000..61aaa68d43 --- /dev/null +++ b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcached to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcached\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:48+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-23 18:57:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-memcached\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MemcachedPlugin.php:218 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Gamitin ang Memcached upang ikubli ang " +"mga resulta ng pagtatanong." diff --git a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po index abdb411372..794b0a321b 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:48+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 daf4cb920d..d74b330967 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:48+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:48+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:58:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Meteor/locale/Meteor.pot b/plugins/Meteor/locale/Meteor.pot index 9c9f35fdbd..e5541ace13 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/fr/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po index 438b67318b..6ab47562cb 100644 --- a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:49+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po index 0344b551f3..c6700d67e4 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:49+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po index c2906284f8..b20f9064f7 100644 --- a/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:49+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:49+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:07:58+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\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 b5ca82b69b..722fc55df9 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:49+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po index fc67637d1d..19b128aae2 100644 --- a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-03 20:56:58+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po index 65f98c24ba..76c64d1c2c 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:49+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po index cd5a4f206f..de8af76943 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:49+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po index de5c31d72a..4e5e73555c 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:49+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po index b302b52bda..d7af94196f 100644 --- a/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:49+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:49+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:07:58+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Minify/locale/Minify.pot b/plugins/Minify/locale/Minify.pot index 013bd0ed1a..0e722f8f74 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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 4bd814f367..5de4240f6a 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:49+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:31+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po index 8fa40c082a..06863912d4 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:49+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po index 93d1af8b52..33d4ab3ca7 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:49+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po index 09bc7d07de..0e61607f94 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:49+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po index 97d76dec75..bc2fe162b0 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46: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: 2010-10-09 14:36:31+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po index e3ab34b14b..59d350d07d 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:49+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po index f79b9c9f2d..0e34a94703 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:49+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:31+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po index a46b798a17..97c1e244d7 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:57+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:50+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po index 028c3dcbf3..2a6b12f345 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:57+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:50+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 475deec22c..608ec12b00 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:50+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:50+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:56:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/MobileProfile/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index 0ece2cbc2e..6ba5447bc5 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po index e735e59f64..8e347ddf8a 100644 --- a/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:51+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po index ce7b1a22f8..c312bde13e 100644 --- a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:51+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po index bf77f803dd..fff08541f8 100644 --- a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:51+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:32+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po index 356f522970..d4117ad37e 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:51+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po index 08a6c5a1d6..40716720ad 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:51+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po new file mode 100644 index 0000000000..8305272640 --- /dev/null +++ b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po @@ -0,0 +1,78 @@ +# Translation of StatusNet - MobileProfile to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - MobileProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-28 23:11:10+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: 2010-10-28 00:08:45+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-mobileprofile\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MobileProfilePlugin.php:193 +msgid "This page is not available in a media type you accept." +msgstr "Denne siden er ikke tilgjengelig i en mediatype du aksepterer." + +#: MobileProfilePlugin.php:310 +msgid "Home" +msgstr "Hjem" + +#: MobileProfilePlugin.php:312 +msgid "Account" +msgstr "Konto" + +#: MobileProfilePlugin.php:314 +msgid "Connect" +msgstr "Koble til" + +#: MobileProfilePlugin.php:317 +msgid "Admin" +msgstr "Admin" + +#: MobileProfilePlugin.php:317 +msgid "Change site configuration" +msgstr "Endre nettstedskonfigurasjon" + +#: MobileProfilePlugin.php:321 +msgid "Invite" +msgstr "Inviter" + +#: MobileProfilePlugin.php:324 +msgid "Logout" +msgstr "Logg ut" + +#: MobileProfilePlugin.php:328 +msgid "Register" +msgstr "Registrer" + +#: MobileProfilePlugin.php:331 +msgid "Login" +msgstr "Logg inn" + +#: MobileProfilePlugin.php:335 +msgid "Search" +msgstr "Søk" + +#: MobileProfilePlugin.php:361 +msgid "Attach" +msgstr "Legg ved" + +#: MobileProfilePlugin.php:365 +msgid "Attach a file" +msgstr "Legg ved en fil" + +#: MobileProfilePlugin.php:417 +msgid "XHTML MobileProfile output for supporting user agents." +msgstr "XHTML MobileProfile-utdata for støttede brukeragenter." diff --git a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po index 772eea0f68..180b67e4c7 100644 --- a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:51+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po index c2f0daebef..198e215d0b 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:51+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po new file mode 100644 index 0000000000..c99f374b63 --- /dev/null +++ b/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po @@ -0,0 +1,78 @@ +# Translation of StatusNet - MobileProfile to Tamil (தமிழ்) +# Expored from translatewiki.net +# +# Author: TRYPPN +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - MobileProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:51+0000\n" +"Language-Team: Tamil \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-23 18:57:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ta\n" +"X-Message-Group: #out-statusnet-plugin-mobileprofile\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MobileProfilePlugin.php:193 +msgid "This page is not available in a media type you accept." +msgstr "" + +#: MobileProfilePlugin.php:310 +msgid "Home" +msgstr "" + +#: MobileProfilePlugin.php:312 +msgid "Account" +msgstr "கணக்கு" + +#: MobileProfilePlugin.php:314 +msgid "Connect" +msgstr "இணை" + +#: MobileProfilePlugin.php:317 +msgid "Admin" +msgstr "" + +#: MobileProfilePlugin.php:317 +msgid "Change site configuration" +msgstr "" + +#: MobileProfilePlugin.php:321 +msgid "Invite" +msgstr "" + +#: MobileProfilePlugin.php:324 +msgid "Logout" +msgstr "விடுபதிகை" + +#: MobileProfilePlugin.php:328 +msgid "Register" +msgstr "பதிவு செய்" + +#: MobileProfilePlugin.php:331 +msgid "Login" +msgstr "புகுபதிகை" + +#: MobileProfilePlugin.php:335 +msgid "Search" +msgstr "தேடுக" + +#: MobileProfilePlugin.php:361 +msgid "Attach" +msgstr "இணை" + +#: MobileProfilePlugin.php:365 +msgid "Attach a file" +msgstr "ஒரு கோப்பை இணைக்கவும்" + +#: MobileProfilePlugin.php:417 +msgid "XHTML MobileProfile output for supporting user agents." +msgstr "" diff --git a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po index e427905a66..ae928435ee 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:51+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po index e76dd223f1..5c52ab10a4 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:51+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 123ed6a1ad..a80d4eae21 100644 --- a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:51+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:57:07+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/ModHelper/locale/ModHelper.pot b/plugins/ModHelper/locale/ModHelper.pot index 90481fe737..63f9800e90 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: 2010-10-18 18:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/fr/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po index 144c352164..62cdf71bab 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: 2010-10-20 17:39+0000\n" -"PO-Revision-Date: 2010-10-20 17:42:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:51+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-19 23:49:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75070); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po index 5f0f78cb03..8e5a726a9c 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:44+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:51+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 21:23:24+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po index 7b7d7f718c..3633e3fb45 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:44+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:51+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 21:23:24+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po index 2f9ff7428c..ec9b75af15 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:44+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:51+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 21:23:24+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po index 0761611763..59f82c0450 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: 2010-10-20 17:39+0000\n" -"PO-Revision-Date: 2010-10-20 17:42:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:51+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-19 23:49:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75070); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index 5051a13573..fe825533d7 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po index 4969bf6e7b..a625aa99ac 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:20+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:33+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index 99064c2b67..b5debbf697 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po index 5d627ef915..eb5097d0f0 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po index 5c135a808f..fe0c39a76c 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po index df2df05452..5adb6836c1 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+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: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po index 770c2c743c..cec49f6060 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po index 830d66f995..adaf8d1a47 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:07:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po index ae43f0fd5c..d0286f0953 100644 --- a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\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 de0726faa2..61539bfca7 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po index 1d9f00ff2a..1a7b2a87f0 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po index 4c9b5ed327..08f5f50e0a 100644 --- a/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:52+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:07:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:29:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index 5ceeb6ad98..2473e730fa 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: 2010-10-18 18:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index 51f22c0170..b0ef34b6b9 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:41+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:14+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:36+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:35+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index c97487b6f3..fdeba50c2f 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:41+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:15+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:36+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:35+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index 5a96fb1d3f..44baf29eef 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:41+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:15+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:36+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:35+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index d70d4b6920..7ffad8df9b 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:41+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:16+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:36+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:35+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index a54c702309..7d3ffb80f5 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:48+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:30:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:35+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index a8c74b6588..70c2116440 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: 2010-10-18 18:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/de/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po index 49e10b0242..6913d48ce2 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: 2010-10-20 00:18+0000\n" -"PO-Revision-Date: 2010-10-20 00:21:19+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-19 23:49:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po index 596593888e..f7a5451b4c 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: 2010-10-20 17:39+0000\n" -"PO-Revision-Date: 2010-10-20 17:42:16+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-20 01:18:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75070); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po index 65aa5dc313..8adcfdf740 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:33:42+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po index 9dcc804c6e..1391ac9eef 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:33:42+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po index d7535ebcee..184e48a4e7 100644 --- a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,20 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+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: 2010-10-09 14:36:34+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: OpenExternalLinkTargetPlugin.php:59 -#, fuzzy msgid "Opens external links (i.e. with rel=external) on a new window or tab." msgstr "" "Åpner eksterne lenker (f.eks. med rel=external) i ett nytt vindu eller en ny " diff --git a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po index 3a3d82cca1..f90a1861e3 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:03:46+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:33:42+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po index f6a3280952..a8b717b87d 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: 2010-10-20 00:18+0000\n" -"PO-Revision-Date: 2010-10-20 00:21:19+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-19 23:49:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index 2d8efbf5ce..6975dbaea1 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: 2010-10-23 18:02+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po index efea4febe9..52c847155c 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:59+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:59:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 3c88ec4db9..ff53e5bd09 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:59+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:59:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index d25c86fc9e..d20835cbf5 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:46:59+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:59:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -351,7 +351,6 @@ msgstr "" #. TRANS: button label for OAuth authorization page when needing OpenID authentication first. #: OpenIDPlugin.php:641 -#, fuzzy msgctxt "BUTTON" msgid "Continue" msgstr "Continuer" diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index 9a416ec881..68e4e32e28 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:59:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -341,7 +341,6 @@ msgstr "" #. TRANS: button label for OAuth authorization page when needing OpenID authentication first. #: OpenIDPlugin.php:641 -#, fuzzy msgctxt "BUTTON" msgid "Continue" msgstr "Continuar" diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index a28736e4e6..851239175a 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:38+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:59:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -337,7 +337,6 @@ msgstr "Користете OpenID за нај #. TRANS: button label for OAuth authorization page when needing OpenID authentication first. #: OpenIDPlugin.php:641 -#, fuzzy msgctxt "BUTTON" msgid "Continue" msgstr "Продолжи" diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index b641290471..d2bf563cdd 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:38+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:00+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: 2010-10-20 17:54:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:59:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -191,7 +191,7 @@ msgstr "" #: openidadminpanel.php:251 msgid "Options" -msgstr "Instellingen" +msgstr "Opties" #: openidadminpanel.php:258 msgid "Enable OpenID-only mode" @@ -345,10 +345,9 @@ msgstr "" #. TRANS: button label for OAuth authorization page when needing OpenID authentication first. #: OpenIDPlugin.php:641 -#, fuzzy msgctxt "BUTTON" msgid "Continue" -msgstr "Doorgaan" +msgstr "Continue" #. TRANS: OpenID plugin logon form legend. #: OpenIDPlugin.php:658 openidlogin.php:140 diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index 5f41aff843..e820e95141 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:38+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:00+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:59:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index bd381baf37..2f13743a30 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -2,6 +2,7 @@ # Expored from translatewiki.net # # Author: Boogie +# Author: Тест # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:38+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:00+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 18:59:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -343,7 +344,6 @@ msgstr "" #. TRANS: button label for OAuth authorization page when needing OpenID authentication first. #: OpenIDPlugin.php:641 -#, fuzzy msgctxt "BUTTON" msgid "Continue" msgstr "Продовжити" diff --git a/plugins/OpenX/locale/OpenX.pot b/plugins/OpenX/locale/OpenX.pot index c8651de3df..768c505340 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: 2010-10-23 18:02+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/fr/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po new file mode 100644 index 0000000000..8137ced2f1 --- /dev/null +++ b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po @@ -0,0 +1,111 @@ +# Translation of StatusNet - OpenX to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenX\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:01+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-23 19:00:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-openx\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Menu item title/tooltip +#: OpenXPlugin.php:201 +msgid "OpenX configuration" +msgstr "Configuration d’OpenX" + +#. TRANS: Menu item for site administration +#: OpenXPlugin.php:203 +msgid "OpenX" +msgstr "OpenX" + +#. TRANS: Plugin description. +#: OpenXPlugin.php:224 +msgid "Plugin for OpenX Ad Server." +msgstr "" +"Module complémentaire pour le serveur de " +"publicité OpenX." + +#. TRANS: Page title for OpenX admin panel. +#: openxadminpanel.php:53 +msgctxt "TITLE" +msgid "OpenX" +msgstr "OpenX" + +#. TRANS: Instructions for OpenX admin panel. +#: openxadminpanel.php:64 +msgid "OpenX settings for this StatusNet site" +msgstr "Paramètres OpenX pour ce site StatusNet" + +#. TRANS: Form label in OpenX admin panel. +#: openxadminpanel.php:167 +msgid "Ad script URL" +msgstr "Adresse URL du script d’annonce" + +#. TRANS: Tooltip for form label in OpenX admin panel. +#: openxadminpanel.php:169 +msgid "Script URL" +msgstr "Adresse URL du script" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:175 +msgid "Medium rectangle" +msgstr "Rectangle moyen" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:177 +msgid "Medium rectangle zone" +msgstr "Zone rectangulaire de taille moyenne" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:183 +msgid "Rectangle" +msgstr "Rectangle" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:185 +msgid "Rectangle zone" +msgstr "Zone de forme rectangulaire" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:191 +msgid "Leaderboard" +msgstr "Panneau de commande" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:193 +msgid "Leaderboard zone" +msgstr "Zone de format tableau de bord" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:199 +msgid "Skyscraper" +msgstr "Bannière verticale" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:201 +msgid "Wide skyscraper zone" +msgstr "Zone de format vertical large" + +#. TRANS: Submit button text in OpenX admin panel. +#: openxadminpanel.php:216 +msgctxt "BUTTON" +msgid "Save" +msgstr "Sauvegarder" + +#. TRANS: Submit button title in OpenX admin panel. +#: openxadminpanel.php:220 +msgid "Save OpenX settings" +msgstr "Sauvegarder les paramètres OpenX" diff --git a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po new file mode 100644 index 0000000000..53f47a9355 --- /dev/null +++ b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po @@ -0,0 +1,111 @@ +# Translation of StatusNet - OpenX to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenX\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:01+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-23 19:00:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-openx\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item title/tooltip +#: OpenXPlugin.php:201 +msgid "OpenX configuration" +msgstr "Configuration de OpenX" + +#. TRANS: Menu item for site administration +#: OpenXPlugin.php:203 +msgid "OpenX" +msgstr "OpenX" + +#. TRANS: Plugin description. +#: OpenXPlugin.php:224 +msgid "Plugin for OpenX Ad Server." +msgstr "" +"Plug-in pro le servitor de annuncios " +"OpenX." + +#. TRANS: Page title for OpenX admin panel. +#: openxadminpanel.php:53 +msgctxt "TITLE" +msgid "OpenX" +msgstr "OpenX" + +#. TRANS: Instructions for OpenX admin panel. +#: openxadminpanel.php:64 +msgid "OpenX settings for this StatusNet site" +msgstr "Configuration de OpenX pro iste sito StatusNet" + +#. TRANS: Form label in OpenX admin panel. +#: openxadminpanel.php:167 +msgid "Ad script URL" +msgstr "URL del script de publicitate" + +#. TRANS: Tooltip for form label in OpenX admin panel. +#: openxadminpanel.php:169 +msgid "Script URL" +msgstr "URL del script" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:175 +msgid "Medium rectangle" +msgstr "Rectangulo medie" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:177 +msgid "Medium rectangle zone" +msgstr "Zona del rectangulo medie" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:183 +msgid "Rectangle" +msgstr "Rectangulo" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:185 +msgid "Rectangle zone" +msgstr "Zona del rectangulo" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:191 +msgid "Leaderboard" +msgstr "Bandiera large" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:193 +msgid "Leaderboard zone" +msgstr "Zona del bandiera large" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:199 +msgid "Skyscraper" +msgstr "Grattacelo" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:201 +msgid "Wide skyscraper zone" +msgstr "Zona del grattacelo large" + +#. TRANS: Submit button text in OpenX admin panel. +#: openxadminpanel.php:216 +msgctxt "BUTTON" +msgid "Save" +msgstr "Salveguardar" + +#. TRANS: Submit button title in OpenX admin panel. +#: openxadminpanel.php:220 +msgid "Save OpenX settings" +msgstr "Salveguardar configurationes de OpenX" diff --git a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po new file mode 100644 index 0000000000..641a805815 --- /dev/null +++ b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po @@ -0,0 +1,111 @@ +# Translation of StatusNet - OpenX to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenX\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:01+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-23 19:00:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-openx\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Menu item title/tooltip +#: OpenXPlugin.php:201 +msgid "OpenX configuration" +msgstr "Поставки за OpenX" + +#. TRANS: Menu item for site administration +#: OpenXPlugin.php:203 +msgid "OpenX" +msgstr "OpenX" + +#. TRANS: Plugin description. +#: OpenXPlugin.php:224 +msgid "Plugin for OpenX Ad Server." +msgstr "" +"Додаток за Рекламен опслужувач за OpenX." + +#. TRANS: Page title for OpenX admin panel. +#: openxadminpanel.php:53 +msgctxt "TITLE" +msgid "OpenX" +msgstr "OpenX" + +#. TRANS: Instructions for OpenX admin panel. +#: openxadminpanel.php:64 +msgid "OpenX settings for this StatusNet site" +msgstr "Поставки за OpenX на ова StatusNet-мрежно место" + +#. TRANS: Form label in OpenX admin panel. +#: openxadminpanel.php:167 +msgid "Ad script URL" +msgstr "URL-адреса на рекламната скрипта" + +#. TRANS: Tooltip for form label in OpenX admin panel. +#: openxadminpanel.php:169 +msgid "Script URL" +msgstr "URL-адреса на скриптата" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:175 +msgid "Medium rectangle" +msgstr "Среден правоаголник" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:177 +msgid "Medium rectangle zone" +msgstr "Зона на среден правоаголник" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:183 +msgid "Rectangle" +msgstr "Правоаголник" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:185 +msgid "Rectangle zone" +msgstr "Зона на правоаголник" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:191 +msgid "Leaderboard" +msgstr "Предводници" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:193 +msgid "Leaderboard zone" +msgstr "Зона за Предводници" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:199 +msgid "Skyscraper" +msgstr "Облакодер" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:201 +msgid "Wide skyscraper zone" +msgstr "Зона на широк облакодер" + +#. TRANS: Submit button text in OpenX admin panel. +#: openxadminpanel.php:216 +msgctxt "BUTTON" +msgid "Save" +msgstr "Зачувај" + +#. TRANS: Submit button title in OpenX admin panel. +#: openxadminpanel.php:220 +msgid "Save OpenX settings" +msgstr "Зачувај поставки за" diff --git a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po new file mode 100644 index 0000000000..aa4f73e274 --- /dev/null +++ b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po @@ -0,0 +1,109 @@ +# Translation of StatusNet - OpenX to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenX\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:01+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-23 19:00:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-openx\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item title/tooltip +#: OpenXPlugin.php:201 +msgid "OpenX configuration" +msgstr "OpenX-instellingen" + +#. TRANS: Menu item for site administration +#: OpenXPlugin.php:203 +msgid "OpenX" +msgstr "OpenX" + +#. TRANS: Plugin description. +#: OpenXPlugin.php:224 +msgid "Plugin for OpenX Ad Server." +msgstr "Plug-in voor OpenX Ad Server." + +#. TRANS: Page title for OpenX admin panel. +#: openxadminpanel.php:53 +msgctxt "TITLE" +msgid "OpenX" +msgstr "OpenX" + +#. TRANS: Instructions for OpenX admin panel. +#: openxadminpanel.php:64 +msgid "OpenX settings for this StatusNet site" +msgstr "OpenX-instellingen voor deze StatusNet-website" + +#. TRANS: Form label in OpenX admin panel. +#: openxadminpanel.php:167 +msgid "Ad script URL" +msgstr "URL voor advertentiescript" + +#. TRANS: Tooltip for form label in OpenX admin panel. +#: openxadminpanel.php:169 +msgid "Script URL" +msgstr "Script-URL" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:175 +msgid "Medium rectangle" +msgstr "Middelgrote rechthoek" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:177 +msgid "Medium rectangle zone" +msgstr "Middelgrote rechthoekzone" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:183 +msgid "Rectangle" +msgstr "Rechthoek" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:185 +msgid "Rectangle zone" +msgstr "Rechthoekzone" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:191 +msgid "Leaderboard" +msgstr "Breedbeeldbanner" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:193 +msgid "Leaderboard zone" +msgstr "Breedbeeldbannerzone" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:199 +msgid "Skyscraper" +msgstr "Skyscraper" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:201 +msgid "Wide skyscraper zone" +msgstr "Brede skyscraperzone" + +#. TRANS: Submit button text in OpenX admin panel. +#: openxadminpanel.php:216 +msgctxt "BUTTON" +msgid "Save" +msgstr "Opslaan" + +#. TRANS: Submit button title in OpenX admin panel. +#: openxadminpanel.php:220 +msgid "Save OpenX settings" +msgstr "OpenX-instellingen opslaan" diff --git a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po new file mode 100644 index 0000000000..2ac9ca8a31 --- /dev/null +++ b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po @@ -0,0 +1,111 @@ +# Translation of StatusNet - OpenX to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenX\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:01+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-23 19:00:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-openx\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: Menu item title/tooltip +#: OpenXPlugin.php:201 +msgid "OpenX configuration" +msgstr "Конфігурація OpenX" + +#. TRANS: Menu item for site administration +#: OpenXPlugin.php:203 +msgid "OpenX" +msgstr "OpenX" + +#. TRANS: Plugin description. +#: OpenXPlugin.php:224 +msgid "Plugin for OpenX Ad Server." +msgstr "" +"Додаток для рекламного сервера OpenX." + +#. TRANS: Page title for OpenX admin panel. +#: openxadminpanel.php:53 +msgctxt "TITLE" +msgid "OpenX" +msgstr "OpenX" + +#. TRANS: Instructions for OpenX admin panel. +#: openxadminpanel.php:64 +msgid "OpenX settings for this StatusNet site" +msgstr "Налаштування OpenX для даного сайту StatusNet" + +#. TRANS: Form label in OpenX admin panel. +#: openxadminpanel.php:167 +msgid "Ad script URL" +msgstr "URL-адреса рекламного скрипту" + +#. TRANS: Tooltip for form label in OpenX admin panel. +#: openxadminpanel.php:169 +msgid "Script URL" +msgstr "URL-адреса скрипту" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:175 +msgid "Medium rectangle" +msgstr "Середній прямокутник" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:177 +msgid "Medium rectangle zone" +msgstr "Зона середнього прямокутника" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:183 +msgid "Rectangle" +msgstr "Прямокутник" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:185 +msgid "Rectangle zone" +msgstr "Зона прямокутника" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:191 +msgid "Leaderboard" +msgstr "Банер" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:193 +msgid "Leaderboard zone" +msgstr "Зона банеру" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:199 +msgid "Skyscraper" +msgstr "Хмарочос" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +#: openxadminpanel.php:201 +msgid "Wide skyscraper zone" +msgstr "Зона широкого хмарочосу" + +#. TRANS: Submit button text in OpenX admin panel. +#: openxadminpanel.php:216 +msgctxt "BUTTON" +msgid "Save" +msgstr "Зберегти" + +#. TRANS: Submit button title in OpenX admin panel. +#: openxadminpanel.php:220 +msgid "Save OpenX settings" +msgstr "Зберегти налаштування OpenX" diff --git a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot index c1d76f1589..39beb1ad7a 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/es/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po index a809ea1b67..38b68d68c8 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:18+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:47+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po index 99178db73b..0b388d43ce 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:47+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po index 99867ca4ac..6b3958b8a6 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:19+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:47+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po index 999bf064cf..11b6bb36bb 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:13+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:19+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:04+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:47+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\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 b7ef8467d9..3ee72de989 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:19+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:47+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po index a9c906fe29..660d6ed51a 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:42+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47: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: 2010-10-09 14:36:37+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:47+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po index 62b7b645be..5cfa188b4a 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:19+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:47+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-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 1e8a37fba7..7c38372ef6 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:13+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:19+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:04+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:47+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po index 26f7ec4e64..de22844a17 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:19+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:47+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po index e257b89c64..9fc9dce4ce 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:19+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:47+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po index 1955825b87..7bc4b33b26 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:19+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:47+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PostDebug/locale/PostDebug.pot b/plugins/PostDebug/locale/PostDebug.pot index 0ca588157f..e1416eccf2 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/es/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po index 8619cc4a44..51b5c4941e 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:20+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po index 0f645284cd..c86cdf574c 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:13+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:20+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:04+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\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 fc0f233f6b..6c920de0f5 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:20+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po index a01587def6..ada645c433 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:20+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po index c103836c91..40ecaa2e3f 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:14+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:20+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:04+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\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 d9b4ff4f6a..42e4b5213a 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:20+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\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 3892c8be2b..40b58652e0 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:20+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po index 608b871ef4..c0ad1ce2ca 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:42+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:21+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: 2010-10-09 14:36:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po index 2d592374bb..16d5b5832d 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-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 c63f6057df..7d947ff7ac 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:14+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:21+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:04+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po index 3e172cdc75..6714744b49 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:21+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po index 0cd74c66c4..e5e5ae914c 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po index 547aaabdb3..e09b351994 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot index ee8a46576e..cab66c10c3 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/br/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po index 54573ebc90..4494f31b0d 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:21+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po index a1816fd70a..97bc9ad516 100644 --- a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po index 2d8249e255..9fbb66c630 100644 --- a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po index b276e0a11e..2bfcbc2df2 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:22+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po index adb46bd5ba..5de5751618 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:22+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po index 204a473e17..2cb3905922 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:22+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po index 0236f7f912..b366f59075 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:43+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:22+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:05+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po index 1545ed7f5b..8f83f37762 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:22+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\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/tl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po index e8924f93eb..e8cca6fe57 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:22+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po index c2eeeabb7d..904474910c 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:30:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PtitUrl/locale/PtitUrl.pot b/plugins/PtitUrl/locale/PtitUrl.pot index ae6aea3aeb..5746e22c1a 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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 87632e46f2..76795e7372 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:44+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:22+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po index a50553d852..32524393ef 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:23+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po index d6843741fb..0ee3ee23e2 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po index e88328c1c7..ed634debfe 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po index ee4553f311..0584ffcba4 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:23+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\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 de54b468bc..797ce3a1d7 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po index 6e833f393d..2a9b60291f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47: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: 2010-09-27 23:20:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po index e88b78a878..fd54f1f56a 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po index 8698b2062c..2a1c99f170 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:50+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:23+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:30:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\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 014c42ffcb..3ecce55b5f 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:44+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:23+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po index 107553a8c0..28cd9eb364 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:23+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po index 6b6f409668..064deab0ca 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po index 8627b17f6c..91ef4509c9 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/RSSCloud/locale/RSSCloud.pot b/plugins/RSSCloud/locale/RSSCloud.pot index b0c85aa630..a2c42d70b5 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/fr/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po index 1f8f461f7a..24e1dc446e 100644 --- a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:30+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po index 1982aecf63..2d37cd6cc5 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:30+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po index 387bbe9d21..9a0f8e298a 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:30+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po index ce80076587..c593e9a05d 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:30+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po index e17fa5b58d..fb7fea6354 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:31+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po index 6997c53740..52450bdabd 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:31+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:36:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/Recaptcha/RecaptchaPlugin.php b/plugins/Recaptcha/RecaptchaPlugin.php index 08557cbd84..5a33e7132e 100644 --- a/plugins/Recaptcha/RecaptchaPlugin.php +++ b/plugins/Recaptcha/RecaptchaPlugin.php @@ -51,15 +51,6 @@ class RecaptchaPlugin extends Plugin } } - function checkssl() - { - if(common_config('site', 'ssl') === 'sometimes' || common_config('site', 'ssl') === 'always') { - return true; - } - return false; - } - - function onEndRegistrationFormData($action) { $action->elementStart('li'); @@ -79,7 +70,7 @@ class RecaptchaPlugin extends Plugin { if (isset($action->recaptchaPluginNeedsOutput) && $action->recaptchaPluginNeedsOutput) { // Load the AJAX API - if ($this->checkssl()) { + if (StatusNet::isHTTPS()) { $url = "https://api-secure.recaptcha.net/js/recaptcha_ajax.js"; } else { $url = "http://api.recaptcha.net/js/recaptcha_ajax.js"; @@ -120,4 +111,4 @@ class RecaptchaPlugin extends Plugin 'captcha to the registration page.')); return true; } -} \ No newline at end of file +} diff --git a/plugins/Recaptcha/locale/Recaptcha.pot b/plugins/Recaptcha/locale/Recaptcha.pot index cf7d002505..56751ce576 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po index 8023b66026..e464262b41 100644 --- a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:24+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:37+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po index fc3180cea5..8c771d6912 100644 --- a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:37+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po index 874a44656c..dbab5c8b39 100644 --- a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:37+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po index b5dcfaa628..2a299a2822 100644 --- a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:37+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po index 216f3c44d6..1e1caf9bf2 100644 --- a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:24+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: 2010-09-27 23:20:04+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:37+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po index 2943b89bed..7b50638357 100644 --- a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:37+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po index 068fa48556..dfc93505ec 100644 --- a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:24+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:30:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:37+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po index 62ad486e59..6c1e83114a 100644 --- a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:45+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:24+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:37+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po index b72a4d75bc..b725c5c228 100644 --- a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:37+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po index 2dbabd69d6..c3c67d0a9d 100644 --- a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:37+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/RegisterThrottle/locale/RegisterThrottle.pot b/plugins/RegisterThrottle/locale/RegisterThrottle.pot index 0e38e92903..fa19c8d01e 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: 2010-10-23 18:02+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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 04666cd3bd..dcbe76001c 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:52+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:25+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:30:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po index ac8949dfd6..d1c98b895b 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:52+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:30:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" @@ -34,7 +34,7 @@ msgstr "" #: RegisterThrottlePlugin.php:161 msgid "A banned user has registered from this address." -msgstr "" +msgstr "Un utilisateur banni s’est inscrit depuis cette adresse." #: RegisterThrottlePlugin.php:191 msgid "Cannot find user after successful registration." diff --git a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po index 42fdac46a5..026d245de9 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:52+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:30:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" @@ -31,7 +31,7 @@ msgstr "Troppo de registrationes. Face un pausa e reproba plus tarde." #: RegisterThrottlePlugin.php:161 msgid "A banned user has registered from this address." -msgstr "" +msgstr "Un usator bannite se ha registrate ab iste adresse." #: RegisterThrottlePlugin.php:191 msgid "Cannot find user after successful registration." diff --git a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po index eda82abc51..3fe4024678 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:52+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:30:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" @@ -31,7 +31,7 @@ msgstr "Премногу регистрации. Направете пауза #: RegisterThrottlePlugin.php:161 msgid "A banned user has registered from this address." -msgstr "" +msgstr "Од оваа адреса се регистрирал забранет корисник." #: RegisterThrottlePlugin.php:191 msgid "Cannot find user after successful registration." diff --git a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po index 59f2f8c496..96b0eb8f89 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:52+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:30:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" @@ -32,7 +32,7 @@ msgstr "Te veel registraties. Wacht even en probeer het later opnieuw." #: RegisterThrottlePlugin.php:161 msgid "A banned user has registered from this address." -msgstr "" +msgstr "Er is een geblokkeerde gebruiker die vanaf dit adres is geregistreerd." #: RegisterThrottlePlugin.php:191 msgid "Cannot find user after successful registration." diff --git a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po index 2cca3ee827..2753c5a7f2 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:52+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:30:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po index 83d0b3c44a..fafe628f09 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -2,6 +2,7 @@ # Expored from translatewiki.net # # Author: Boogie +# Author: Тест # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:05:52+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:30:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:00:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" @@ -32,7 +33,7 @@ msgstr "Забагато реєстрацій. Випийте поки що ка #: RegisterThrottlePlugin.php:161 msgid "A banned user has registered from this address." -msgstr "" +msgstr "Заблокований користувач був зареєстрований з цієї адреси." #: RegisterThrottlePlugin.php:191 msgid "Cannot find user after successful registration." diff --git a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot index 8594cc6eb6..64185f61a9 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: 2010-10-18 18:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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 f23aa3100c..3644e117e5 100644 --- a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:04:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:26+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:33:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po index 1c66594be3..5b0b128304 100644 --- a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-20 17:39+0000\n" -"PO-Revision-Date: 2010-10-20 17:42:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:26+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-20 01:18:32+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75070); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po index e44edbbc2b..24f0a9ca9c 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:04:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:33:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po index 02dcce4b20..b9acfe4c67 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:04:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:33:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po index be2c8c352e..9197a94eaf 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:04:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:33:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po index dda7e4080c..0b809fa01d 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: 2010-10-19 23:00+0000\n" -"PO-Revision-Date: 2010-10-19 23:04:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:26+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:33:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po index 3a6f66b9cb..387cfb6e05 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: 2010-10-20 00:18+0000\n" -"PO-Revision-Date: 2010-10-20 00:21:44+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-19 23:49:58+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75030); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot index a825d77f08..2bdbb4543e 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/fr/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po index 0f6bb2fe37..6043bcabae 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:31:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po index b1f51c37ce..61c345b1ac 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:29+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:31:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po index 499b4d6704..1a65519b0d 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:17+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:29+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:08+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:31:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\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 329607b730..d89301e3a9 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:29+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:31:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\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 e12975dc7e..46fce95bb5 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:29+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:31:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po index 442157fa27..7fc96e01a3 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:47+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47: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: 2010-10-09 14:37:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:31:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po index b1ca068d0d..25375470a0 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:29+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:31:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po index c95c54853d..18c5812923 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:48+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:29+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:37:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:31:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po index bcf1f40db0..be7da835bc 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:29+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:31:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po index 44aa0235bc..3fdaa0471f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:29+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:31:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/Sample/locale/Sample.pot b/plugins/Sample/locale/Sample.pot index 15ae7af660..6d1aa9cbfd 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/br/LC_MESSAGES/Sample.po b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po index 1686bf174e..2ac1405de0 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:31+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:22+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po index 879c547d0a..162955f071 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:50+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:31+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:36:55+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:22+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po index 8b4728c47c..f6cf48cc2e 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:32+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:22+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po index fbaf98a790..85b7934e31 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:33+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:22+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po index 58f09fc8fe..5f2b9e7df3 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:34+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:22+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po index 0d265acb31..48667d6613 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:34+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:22+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po index 703f8b3175..bdaa2a0730 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: 2010-10-20 17:39+0000\n" -"PO-Revision-Date: 2010-10-20 17:42:40+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:34+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:34:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75070); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:22+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po index 076c09ba00..e3f1519f7b 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:34+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:22+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po index 1ada83ad27..db035f16da 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:22+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-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 e0a3f97b96..08db99e379 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:35+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:58:22+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/ShareNotice/locale/ShareNotice.pot b/plugins/ShareNotice/locale/ShareNotice.pot index cfd7d800c1..e707485194 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/de/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po index c759e8068a..270b5a5161 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:51+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:36+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:37:17+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po index a9a5331345..1094665a38 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:20+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po index 0f6c4afe86..10b1326921 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:45:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po index ea98906c20..ce933206a0 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:45:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po index cbf057a151..816e9d4f00 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:45:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po index 6bd6594937..28b19c7eed 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:36+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:45:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po index ed3105facc..20324a9c9e 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:45:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/SimpleUrl/locale/SimpleUrl.pot b/plugins/SimpleUrl/locale/SimpleUrl.pot index 113f14c2ff..48c1232f90 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po index 673a353409..014278c9a4 100644 --- a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:52+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:36+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:37:19+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po index d7ec27779b..cd7fba71ec 100644 --- a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:37+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po index 73b1562247..1e0b0f207a 100644 --- a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:37+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po index b3c155c924..64ed2fec41 100644 --- a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:38+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po index 252327b6b0..e09dfe89c3 100644 --- a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:21+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:38+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:12+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po index a01b000937..e3c23a8a17 100644 --- a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:38+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po index 84e6115271..c5b9bd7192 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:38+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po index 28c9815c33..f71bd364fb 100644 --- a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47: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: 2010-09-27 23:21:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po index 78f44feb0a..9317a919d7 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:38+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po index 07eb5a18b7..24d6b06fc4 100644 --- a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:53+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:38+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:37:19+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po index 3546df97eb..c5a98c2aad 100644 --- a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:38+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po index 91ac07ab7b..257e9f9d19 100644 --- a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:38+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po index ddf67c36c2..8d5ca12c9b 100644 --- a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:38+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:10+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/Sitemap/locale/Sitemap.pot b/plugins/Sitemap/locale/Sitemap.pot index 83e71e7853..3912f78c07 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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 787f831bb8..02dea72ee5 100644 --- a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:54+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:40+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:37:20+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po index 66a40b2a4c..08e5ea30dc 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:40+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:13:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po index 7861af97fd..1edd52a8c1 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:40+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:13:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po index 4e08579a8e..0615d84e16 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:40+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:13:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po index d469fd0537..8376c29ae1 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:40+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:13:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po index 300222087c..fb2bedc513 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:55+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:40+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:37:20+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po index 3952dc50d5..03ca0e59cb 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:41+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:13:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po index ec7d365a2c..1410893282 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:41+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:13:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/SlicedFavorites/locale/SlicedFavorites.pot b/plugins/SlicedFavorites/locale/SlicedFavorites.pot index d129de3e40..06420370ce 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/fr/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po index 670da77d92..b1323d750f 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:41+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:58:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po index 625a678003..91f79659b1 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:41+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po index ec30a42e63..899d079083 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:22+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:41+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:58:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\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 a8406a452f..d8e11f8a7f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:41+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po index 1b9ee5bdf3..e4d9bd780f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po index 9b8905f211..0561fdec5d 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:41+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po index 5c5f0d0039..6fee02744f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:24+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:41+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:21+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SphinxSearch/locale/SphinxSearch.pot b/plugins/SphinxSearch/locale/SphinxSearch.pot index cac794802b..c2f63993b1 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/fr/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po index 98f421c774..9b5d6767eb 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:42+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:12:36+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po index b07a0f0ef8..eec884cb36 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:42+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:12:36+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po index 3a0dbd620f..0db82420a9 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:42+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:12:36+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po index d12baabe49..cb60497308 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:42+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:12:36+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po index 6541ab1691..d875a8b069 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:56+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:42+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:37:22+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po index 62a35bf2c1..f2fe15b509 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:42+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:12:36+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po index db526fb32d..4abc404f9a 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:23+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:42+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:12:36+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/StrictTransportSecurity/README b/plugins/StrictTransportSecurity/README new file mode 100644 index 0000000000..66f03e95ea --- /dev/null +++ b/plugins/StrictTransportSecurity/README @@ -0,0 +1,21 @@ +The Strict Transport Security plugin implements the Strict Transport Security header, improving the security of HTTPS only sites. +See http://lists.w3.org/Archives/Public/www-archive/2009Sep/att-0051/draft-hodges-strict-transport-sec-05.plain.html for the specification. + +Installation +============ +add "addPlugin('strictTransportSecurity');" +to the bottom of your config.php + +The plugin will not do anything unless: +$config['site']['ssl'] is set to 'always' +$config['site']['path'] is either not set, empty, or '/' + +Settings +======== +max_age (15552000): sets how long to remember the forced HTTPS (seconds) (15552000 seconds is 180 days) +includeSubDomains (false): if set, then STS will apply to all the sub-domains too. + +Example +======= +addPlugin('strictTransportSecurity'); + diff --git a/plugins/StrictTransportSecurity/StrictTransportSecurityPlugin.php b/plugins/StrictTransportSecurity/StrictTransportSecurityPlugin.php new file mode 100644 index 0000000000..004a627929 --- /dev/null +++ b/plugins/StrictTransportSecurity/StrictTransportSecurityPlugin.php @@ -0,0 +1,62 @@ +. + * + * @category Plugin + * @package StatusNet + * @author Craig Andrews + * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET') && !defined('LACONICA')) { + exit(1); +} + +class StrictTransportSecurityPlugin extends Plugin +{ + public $max_age = 15552000; + public $includeSubDomains = false; + + function __construct() + { + parent::__construct(); + } + + function onArgsInitialize($args) + { + $path = common_config('site', 'path'); + if(common_config('site', 'ssl') == 'always' && ($path == '/' || ! $path )) { + header('Strict-Transport-Security: max-age=' . $this->max_age . + ($this->includeSubDomains?'; includeSubDomains':'')); + } + } + + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'StrictTransportSecurity', + 'version' => STATUSNET_VERSION, + 'author' => 'Craig Andrews', + 'homepage' => 'http://status.net/wiki/Plugin:StrictTransportSecurity', + 'rawdescription' => + _m('The Strict Transport Security plugin implements the Strict Transport Security header, improving the security of HTTPS only sites.')); + return true; + } +} diff --git a/plugins/SubMirror/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index 8881b6d9af..51a34b124f 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index ba379ea32e..4114ec95b0 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:25+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:44+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po index 4da2c0da66..d19d2e5739 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:44+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po index 69da696115..30eb22a1c8 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:44+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po index baa10a197b..1a3fba2aa5 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:44+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po index e99f07b194..5ea2032119 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:44+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po index 857cc68a52..ced57eafa2 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:44+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot index b23c594e55..e1fdd838d7 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/de/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po index 809dd6ae6c..301bcd987a 100644 --- a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:43:58+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:44+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:37:25+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po index 50cb448a5f..e59a287f19 100644 --- a/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:44+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po index 83ad537b0d..27afb30636 100644 --- a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:44+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po index 8f6336b818..8887b45de5 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:44+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/id/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/id/LC_MESSAGES/SubscriptionThrottle.po index a26bfa859f..5e0506cc5e 100644 --- a/plugins/SubscriptionThrottle/locale/id/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/id/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:25+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:58:48+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\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 6d0505cfa9..94dffa840a 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po index e8072e61f2..bc98b3ab79 100644 --- a/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+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: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po index e64341a3e7..ff4912546b 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po index 25efbab795..0f869f612e 100644 --- a/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po index eb2dfef888..caee476f30 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po index 88e330a72d..b48dca179e 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/TabFocus/locale/TabFocus.pot b/plugins/TabFocus/locale/TabFocus.pot index 4363c9e603..993ea53e6a 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/es/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po index 16aed8a9fe..7f3a0838be 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po index 7d9e1da650..173e834f9e 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po index abda0307b0..757a0d4211 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:06:02+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:37:26+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po index eedf5cb8b0..3a3e2a3036 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po index 804ed79b4e..3c1c7d4d31 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:36+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\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 ff4fa75cef..c60b11f4ee 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po index 244dc38091..f0f368a891 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+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: 2010-10-01 20:39:39+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po index 9e499b6e66..a8acd188b1 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po index 7bab99a24e..3c8287bf3d 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po index b7b6fb7a16..f47c26d0c8 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po index 3c3521ce3f..96d5d0809b 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:45+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:01+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TightUrl/locale/TightUrl.pot b/plugins/TightUrl/locale/TightUrl.pot index 04475e73c4..262b122b41 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/TightUrl/locale/es/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po index e8a5d5471c..3e3c414da0 100644 --- a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:46+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po index d55583323c..bd1f64a697 100644 --- a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po index f312a94185..a473a1610c 100644 --- a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po index 862a0122bf..5703688f68 100644 --- a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:26+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:46+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:36+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po index b689a37fc6..2d5375abd8 100644 --- a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:46+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po index 9a59c7c848..228417b9fb 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:46+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po index c426de9fa6..86631aceaf 100644 --- a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:46+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: 2010-10-01 20:39:40+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po index 338a7f3b6e..3184fe50c7 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:46+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po new file mode 100644 index 0000000000..aadc605aa2 --- /dev/null +++ b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - TightUrl to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Giro720 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TightUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:46+0000\n" +"Language-Team: Brazilian Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-09 14:37:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt-br\n" +"X-Message-Group: #out-statusnet-plugin-tighturl\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: TightUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Utiliza o serviço de encurtamento de URL %1$s" diff --git a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po index 42f1795e5d..c0fbad15ba 100644 --- a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:46+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po index 24adab5a43..3aa5d45a73 100644 --- a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:46+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po index 90ad55197d..bb4c366003 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:46+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-09 14:37:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TinyMCE/locale/TinyMCE.pot b/plugins/TinyMCE/locale/TinyMCE.pot index 3471555c42..7c777e4bfd 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po index b0a47ed161..8fbc405a3d 100644 --- a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:00+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:46+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:40:12+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po index 164b4f6ed9..82ab71374b 100644 --- a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:46+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po index cf23c1c4b2..1502b02e89 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po index 9dd59764c0..917a520621 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po index cc892ed062..057b039137 100644 --- a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:27+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:46+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:35+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po index 03b043d6e7..505195d4d9 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:47+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po index 6c349f71e3..e96072c62d 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:47+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: 2010-10-01 20:39:41+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po index 1185e7c54b..993a74982f 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:47+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po index 608eede335..dedd7f2d71 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:47+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po index 271497f956..f754e19f30 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:47+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po index 9b2856f94b..19e91e0de6 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:47+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po index f8665c2c73..cbb86dde03 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:47+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index 26aa6367b2..2fc96dfe2a 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: 2010-10-23 18:02+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index 633ae633b4..988b2577df 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:06:10+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:52+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po index 43e9c8c907..c655e8e9c8 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:06:10+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:52+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po index 3434b62e15..88f3a2eb2e 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:06:10+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:52+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po index a9fecf676a..8e152f4054 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:06:10+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:52+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po index 1200fcdc23..76e7e8ecb3 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:06:10+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:52+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po index a49194e9db..2ee15e69bf 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:06:10+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po index 323d166239..54804a7284 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:06:10+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:53+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/UserFlag/locale/UserFlag.pot b/plugins/UserFlag/locale/UserFlag.pot index 5a2b2f7364..decb06d047 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po index 515c2a0a12..277ce5650e 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: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:34+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-04 23:11:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po index eebbcb14a1..d58458b052 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:34:03+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 21:01:06+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po index 7b4c51d81c..ab9c1b2e4f 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:34:03+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 21:01:06+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po index 207e9a944f..115b63433a 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:34:03+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 21:01:06+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po index 9b7d4969d2..c476cf2f7c 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: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:06:13+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:40:19+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po index 7712d6cfe9..c6dd6e40d7 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: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:34:03+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 21:01:06+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserLimit/locale/UserLimit.pot b/plugins/UserLimit/locale/UserLimit.pot index 7b7a995f2e..8bc68555c2 100644 --- a/plugins/UserLimit/locale/UserLimit.pot +++ b/plugins/UserLimit/locale/UserLimit.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/UserLimit/locale/br/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po index 5395134f35..287e8ae519 100644 --- a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:09+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:40:24+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po index 1699a81740..2348ad33be 100644 --- a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po index e64ec8954f..7bcf6900b5 100644 --- a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po index 5c68f2dcfd..ba89af2488 100644 --- a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po index 50cc557f0e..055b32ccb0 100644 --- a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:06:13+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:34:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po index 760cebc676..f347d50fb4 100644 --- a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po index 35af6e32ae..46c112fd88 100644 --- a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:38+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:33+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po index 91dff4f218..ada9882b03 100644 --- a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:09+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:40:24+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po index d685e8ca9d..2396fba99f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po index f3d54f6f4c..1791989105 100644 --- a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+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: 2010-09-27 23:21:30+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po index e099949349..c81c1a916f 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po index ac859ab5b4..18fdbff217 100644 --- a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:09+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:40:24+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po index 216a8e6c31..5d39176ff8 100644 --- a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po index ed402a3974..c2a19b0282 100644 --- a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:54+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po index 71ff8a65fb..bb50fd4c49 100644 --- a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po index 538505e48e..3d9b420501 100644 --- a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:55+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po index 6564c78976..5c026d2622 100644 --- a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:55+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/WikiHashtags/locale/WikiHashtags.pot b/plugins/WikiHashtags/locale/WikiHashtags.pot index a78afd38f7..a883d5c5c7 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/WikiHashtags/locale/br/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/br/LC_MESSAGES/WikiHashtags.po index 7d77e5a9c6..3c7f136241 100644 --- a/plugins/WikiHashtags/locale/br/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/br/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:10+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:55+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po index 971db31133..b504c15109 100644 --- a/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:55+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po index d879d2a1d9..0962c23b2a 100644 --- a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:55+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/id/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/id/LC_MESSAGES/WikiHashtags.po index bd3cee2c12..3f6b753fa1 100644 --- a/plugins/WikiHashtags/locale/id/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/id/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:39+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:55+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:33+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po index 5be14522db..b15fb0cf6a 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po index 8741ffb994..4b8883fb46 100644 --- a/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:55+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: 2010-09-27 23:21:31+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po index 369c3650eb..c5390316f3 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: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po index 8f1d8b7f64..6074947ad6 100644 --- a/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:55+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po index 75e44a2682..69d77cc2e2 100644 --- a/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:55+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po index 8488f2843e..43d2ec0577 100644 --- a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po index 7810080654..aafaf2d55c 100644 --- a/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:55+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po index 8b62c5be93..91c5181f83 100644 --- a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:55+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHowProfile/locale/WikiHowProfile.pot b/plugins/WikiHowProfile/locale/WikiHowProfile.pot index 523791246a..51a4235a28 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: 2010-10-18 18:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po index 5fec9fffb4..a8a3a58e18 100644 --- a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:11+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po index 14cb1ee83b..bd250bfd0f 100644 --- a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:11+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po index 976ace13eb..60f09c2731 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:11+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po index 48871632f0..2dc8446ef9 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:13+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po index f9234c49bc..47528deeeb 100644 --- a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:13+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po index 005a8f906d..22b2317006 100644 --- a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po index 6b59abaf71..6d9232d0db 100644 --- a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po index 0eb738a78e..c99de0b76d 100644 --- a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/XCache/locale/XCache.pot b/plugins/XCache/locale/XCache.pot index 2d3f75dc26..bf182b824f 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: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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/XCache/locale/br/LC_MESSAGES/XCache.po b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po index c5025c52af..ccd4a9b306 100644 --- a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po index d24ff11898..cd20ce56f2 100644 --- a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po index 5513c25f0b..887664375e 100644 --- a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po index 9cdd56d524..bbd1b05ccd 100644 --- a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-23 18:02+0000\n" -"PO-Revision-Date: 2010-10-23 18:06:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-18 20:34:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po index 4f8e5a1e91..bded5aa3bb 100644 --- a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po index ce6731528f..438f069c21 100644 --- a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:40+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:31+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po index cb6e5c4199..fd7e903048 100644 --- a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po index c8812aaa8b..1508b5bc54 100644 --- a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+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: 2010-09-27 23:22:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po index 22d5a87ceb..9b6e73271a 100644 --- a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po index f569094c03..a868993b90 100644 --- a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:15+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:17+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po index 16df3c2d96..d33f67d6f0 100644 --- a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po index 83abdf0af1..918c98f5c2 100644 --- a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po index d9550d72fb..9367b6be85 100644 --- a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po index 1c56db2fe1..a2614bf8fc 100644 --- a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:37+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:47:56+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-23 19:01:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot index 0df7cfcae9..d660d8fddc 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: 2010-10-18 18:35+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+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 154afaf4ec..c310795d58 100644 --- a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:19+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:48:00+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:19+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po index 8fb2a065d8..c3ae86d6c3 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:19+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:48:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:19+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po index 8cee2a3684..cb433b95ab 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:19+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:48:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:19+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po index b9dd51ea2b..4563535287 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:19+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:48:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:19+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po index 905c032b73..2f6a128ab5 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:19+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:48:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:19+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po index ee0f87ce24..c8e1ce2bd0 100644 --- a/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po @@ -2,6 +2,7 @@ # Expored from translatewiki.net # # Author: Eleferen +# Author: MaxSem # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:19+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:48:00+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:19+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" @@ -153,7 +154,7 @@ msgid "Importing %d user..." msgid_plural "Importing %d users..." msgstr[0] "Импорт %d пользователя…" msgstr[1] "Импорт %d пользователей…" -msgstr[2] "" +msgstr[2] "Импорт %d пользователей…" #: lib/yammerprogressform.php:75 #, php-format diff --git a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po index 3bfefd7822..127271852c 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:19+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:48:00+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:19+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po index 8bf7d52fc2..57e304c61c 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: 2010-10-18 18:35+0000\n" -"PO-Revision-Date: 2010-10-18 18:44:19+0000\n" +"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"PO-Revision-Date: 2010-10-27 23:48:00+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-09 14:41:19+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-18 20:34:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75596); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/scripts/userrole.php b/scripts/userrole.php index 7b6a9b3fd8..a2cc7def88 100644 --- a/scripts/userrole.php +++ b/scripts/userrole.php @@ -38,8 +38,8 @@ require_once INSTALLDIR.'/scripts/commandline.inc'; if (have_option('i', 'id')) { $id = get_option_value('i', 'id'); - $user = User::staticGet('id', $id); - if (empty($user)) { + $profile = Profile::staticGet('id', $id); + if (empty($profile)) { print "Can't find user with ID $id\n"; exit(1); } @@ -50,6 +50,11 @@ if (have_option('i', 'id')) { print "Can't find user with nickname '$nickname'\n"; exit(1); } + $profile = $user->getProfile(); + if (empty($profile)) { + print "User with ID $id has no profile\n"; + exit(1); + } } else { print "You must provide either an ID or a nickname.\n"; exit(1); @@ -63,9 +68,9 @@ if (empty($role)) { } if (have_option('d', 'delete')) { - print "Revoking role '$role' from user '$user->nickname' ($user->id)..."; + print "Revoking role '$role' from user '$profile->nickname' ($profile->id)..."; try { - $user->revokeRole($role); + $profile->revokeRole($role); print "OK\n"; } catch (Exception $e) { print "FAIL\n"; @@ -73,9 +78,9 @@ if (have_option('d', 'delete')) { print "\n"; } } else { - print "Granting role '$role' to user '$user->nickname' ($user->id)..."; + print "Granting role '$role' to user '$profile->nickname' ($profile->id)..."; try { - $user->grantRole($role); + $profile->grantRole($role); print "OK\n"; } catch (Exception $e) { print "FAIL\n";