From: Zach Copley Date: Fri, 18 Feb 2011 03:11:29 +0000 (-0800) Subject: Merge branch '0.9.x' into json-activities X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e98e443605cff0266dcf9b412641b42c82e45824;hp=29ce5dd19a5f3d395aeddddaab0350f8818199b5;p=quix0rs-gnu-social.git Merge branch '0.9.x' into json-activities * 0.9.x: * update translator documentation. * remove superfluous whitespace. * tab to spaces. * add FIXME for undocumented class. * update translator documentation. * remove superfluous whitespace. * L10n updates. * small refactoring in publicrss.php. * remove PHP4-isms Localisation updates from http://translatewiki.net. Double quotes to single quotes. * improve L10n consistency for English. For example proper punctuation for all button and label titles. * fix some i18n bugs (in-message variables). * update/add translator documentation. * remove superfluous whitespace. add path separators for Plugin::path() argument to send email summary to all users on all sites fix indentation in siteemailsummaryhandler fix indentation in sendemailsummary.php fix indentation in Email_summary_status.php fix indentation in EmailSummaryPlugin.php fix indentation in usermailsummaryhandler.php --- diff --git a/actions/apidirectmessagenew.php b/actions/apidirectmessagenew.php index 978c753532..e33077cdac 100644 --- a/actions/apidirectmessagenew.php +++ b/actions/apidirectmessagenew.php @@ -141,7 +141,7 @@ class ApiDirectMessageNewAction extends ApiAuthAction } else if (!$this->user->mutuallySubscribed($this->other)) { $this->clientError( // TRANS: Client error displayed trying to direct message another user who's not a friend (403). - _('Can\'t send direct messages to users who aren\'t your friend.'), + _('Cannot send direct messages to users who aren\'t your friend.'), 403, $this->format ); diff --git a/actions/apioauthaccesstoken.php b/actions/apioauthaccesstoken.php index 6c3819c3bd..76b06c28a2 100644 --- a/actions/apioauthaccesstoken.php +++ b/actions/apioauthaccesstoken.php @@ -99,7 +99,7 @@ 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'); + $this->clientError(_('Invalid request token or verifier.'), 400, 'text'); } else { common_log( LOG_INFO, diff --git a/actions/apistatusesshow.php b/actions/apistatusesshow.php index 9a7f36bb3a..de4c4065c1 100644 --- a/actions/apistatusesshow.php +++ b/actions/apistatusesshow.php @@ -141,7 +141,7 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction default: // TRANS: Exception thrown requesting an unsupported notice output format. // TRANS: %s is the requested output format. - throw new Exception(sprintf(_("Unsupported format: %s"), $this->format)); + throw new Exception(sprintf(_("Unsupported format: %s."), $this->format)); } } else { // XXX: Twitter just sets a 404 header and doens't bother @@ -224,7 +224,7 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction { if ($this->format != 'atom') { // TRANS: Client error displayed when trying to delete a notice not using the Atom format. - $this->clientError(_("Can only delete using the Atom format.")); + $this->clientError(_('Can only delete using the Atom format.')); return; } diff --git a/actions/apitimelineuser.php b/actions/apitimelineuser.php index b3b908accc..b0ca7e923f 100644 --- a/actions/apitimelineuser.php +++ b/actions/apitimelineuser.php @@ -329,7 +329,6 @@ class ApiTimelineUserAction extends ApiBareAuthAction $saved = null; if (Event::handle('StartAtomPubNewActivity', array(&$activity, $this->user, &$saved))) { - if ($activity->verb != ActivityVerb::POST) { // TRANS: Client error displayed when not using the POST verb. Do not translate POST. $this->clientError(_('Can only handle POST activities.')); @@ -405,6 +404,7 @@ class ApiTimelineUserAction extends ApiBareAuthAction if (!empty($notice)) { // TRANS: Client error displayed when using another format than AtomPub. + // TRANS: %s is the notice URI. $this->clientError(sprintf(_('Notice with URI "%s" already exists.'), $note->id)); return; diff --git a/actions/atompubshowmembership.php b/actions/atompubshowmembership.php index a845ea23df..098cca8b3e 100644 --- a/actions/atompubshowmembership.php +++ b/actions/atompubshowmembership.php @@ -142,7 +142,6 @@ class AtompubshowmembershipAction extends ApiAuthAction * * @return void */ - function deleteMembership() { if (empty($this->auth_user) || diff --git a/actions/avatarsettings.php b/actions/avatarsettings.php index c81c024081..234986e5f7 100644 --- a/actions/avatarsettings.php +++ b/actions/avatarsettings.php @@ -211,7 +211,7 @@ class AvatarsettingsAction extends AccountSettingsAction array('id' => 'avatar_original', 'class' => 'avatar_view')); // TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). - $this->element('h2', null, _("Original")); + $this->element('h2', null, _('Original')); $this->elementStart('div', array('id'=>'avatar_original_view')); $this->element('img', array('src' => Avatar::url($this->filedata['filename']), 'width' => $this->filedata['width'], @@ -224,7 +224,7 @@ class AvatarsettingsAction extends AccountSettingsAction array('id' => 'avatar_preview', 'class' => 'avatar_view')); // TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). - $this->element('h2', null, _("Preview")); + $this->element('h2', null, _('Preview')); $this->elementStart('div', array('id'=>'avatar_preview_view')); $this->element('img', array('src' => Avatar::url($this->filedata['filename']), 'width' => AVATAR_PROFILE_SIZE, @@ -341,8 +341,8 @@ class AvatarsettingsAction extends AccountSettingsAction $this->mode = 'crop'; - // TRANS: Avatar upload form unstruction after uploading a file. - $this->showForm(_('Pick a square area of the image to be your avatar'), + // TRANS: Avatar upload form instruction after uploading a file. + $this->showForm(_('Pick a square area of the image to be your avatar.'), true); } diff --git a/actions/backupaccount.php b/actions/backupaccount.php index 928aba69ce..e32b8d03de 100644 --- a/actions/backupaccount.php +++ b/actions/backupaccount.php @@ -58,7 +58,7 @@ class BackupaccountAction extends Action function title() { // TRANS: Title for backup account page. - return _("Backup account"); + return _('Backup account'); } /** @@ -249,6 +249,6 @@ class BackupAccountForm extends Form 'submit', null, // TRANS: Title for submit button to backup an account on the backup account page. - _('Backup your account')); + _('Backup your account.')); } } diff --git a/actions/block.php b/actions/block.php index e87353b4e1..f195fb5a88 100644 --- a/actions/block.php +++ b/actions/block.php @@ -155,14 +155,14 @@ class BlockAction extends ProfileFormAction 'submit form_action-primary', 'no', // TRANS: Submit button title for 'No' when blocking a user. - _('Do not block this user')); + _('Do not block this user.')); $this->submit('form_action-yes', // TRANS: Button label on the user block form. _m('BUTTON','Yes'), 'submit form_action-secondary', 'yes', // TRANS: Submit button title for 'Yes' when blocking a user. - _('Block this user')); + _('Block this user.')); $this->elementEnd('fieldset'); $this->elementEnd('form'); } diff --git a/actions/deleteapplication.php b/actions/deleteapplication.php index 272a91762c..9f9ac18971 100644 --- a/actions/deleteapplication.php +++ b/actions/deleteapplication.php @@ -158,13 +158,13 @@ class DeleteapplicationAction extends Action 'submit form_action-primary', 'no', // TRANS: Submit button title for 'No' when deleting an application. - _('Do not delete this application')); + _('Do not delete this application.')); $this->submit('form_action-yes', // TRANS: Button label on the delete application form. _m('BUTTON','Yes'), 'submit form_action-secondary', // TRANS: Submit button title for 'Yes' when deleting an application. - 'yes', _('Delete this application')); + 'yes', _('Delete this application.')); $this->elementEnd('fieldset'); $this->elementEnd('form'); } diff --git a/actions/deletegroup.php b/actions/deletegroup.php index 4e9b9851f1..637a7cba73 100644 --- a/actions/deletegroup.php +++ b/actions/deletegroup.php @@ -221,14 +221,14 @@ class DeletegroupAction extends RedirectingAction 'submit form_action-primary', 'no', // TRANS: Submit button title for 'No' when deleting a group. - _('Do not delete this group')); + _('Do not delete this group.')); $this->submit('form_action-yes', // TRANS: Button label on the delete group form. _m('BUTTON','Yes'), 'submit form_action-secondary', 'yes', // TRANS: Submit button title for 'Yes' when deleting a group. - _('Delete this group')); + _('Delete this group.')); $this->elementEnd('fieldset'); $this->elementEnd('form'); } diff --git a/actions/deletenotice.php b/actions/deletenotice.php index ff57bbd61e..c997bb756a 100644 --- a/actions/deletenotice.php +++ b/actions/deletenotice.php @@ -156,14 +156,14 @@ class DeletenoticeAction extends Action 'submit form_action-primary', 'no', // TRANS: Submit button title for 'No' when deleting a notice. - _("Do not delete this notice")); + _('Do not delete this notice.')); $this->submit('form_action-yes', // TRANS: Button label on the delete notice form. _m('BUTTON','Yes'), 'submit form_action-secondary', 'yes', // TRANS: Submit button title for 'Yes' when deleting a notice. - _('Delete this notice')); + _('Delete this notice.')); $this->elementEnd('fieldset'); $this->elementEnd('form'); } diff --git a/actions/deleteuser.php b/actions/deleteuser.php index ac96b7b5d5..19b1e20e83 100644 --- a/actions/deleteuser.php +++ b/actions/deleteuser.php @@ -155,14 +155,14 @@ class DeleteuserAction extends ProfileFormAction 'submit form_action-primary', 'no', // TRANS: Submit button title for 'No' when deleting a user. - _('Do not delete this user')); + _('Do not delete this user.')); $this->submit('form_action-yes', // TRANS: Button label on the delete user form. _m('BUTTON','Yes'), 'submit form_action-secondary', 'yes', // TRANS: Submit button title for 'Yes' when deleting a user. - _('Delete this user')); + _('Delete this user.')); $this->elementEnd('fieldset'); $this->elementEnd('form'); } diff --git a/actions/designadminpanel.php b/actions/designadminpanel.php index 34e6de851a..a77b842fe3 100644 --- a/actions/designadminpanel.php +++ b/actions/designadminpanel.php @@ -336,7 +336,7 @@ class DesignadminpanelAction extends AdminPanelAction if (!in_array($values['theme'], Theme::listAvailable())) { // TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list. // TRANS: %s is the chosen unavailable theme. - $this->clientError(sprintf(_("Theme not available: %s."), $values['theme'])); + $this->clientError(sprintf(_('Theme not available: %s.'), $values['theme'])); } } @@ -443,7 +443,7 @@ class DesignAdminPanelForm extends AdminForm // TRANS: Field label for StatusNet site logo. _('Site logo'), // TRANS: Title for field label for StatusNet site logo. - 'Logo for the site (full URL)'); + 'Logo for the site (full URL).'); $this->unli(); $this->li(); @@ -451,7 +451,7 @@ class DesignAdminPanelForm extends AdminForm // TRANS: Field label for SSL StatusNet site logo. _('SSL logo'), // TRANS: Title for field label for SSL StatusNet site logo. - 'Logo to show on SSL pages'); + 'Logo to show on SSL pages.'); $this->unli(); $this->out->elementEnd('ul'); @@ -717,7 +717,7 @@ class DesignAdminPanelForm extends AdminForm // TRANS: Button text for resetting theme settings. $this->out->submit('defaults', _m('BUTTON','Use defaults'), 'submit form_action-default', // TRANS: Title for button for resetting theme settings. - 'defaults', _('Restore default designs')); + 'defaults', _('Restore default designs.')); $this->out->element('input', array('id' => 'settings_design_reset', 'type' => 'reset', @@ -725,7 +725,7 @@ class DesignAdminPanelForm extends AdminForm 'value' => 'Reset', 'class' => 'submit form_action-primary', // TRANS: Title for button for resetting theme settings. - 'title' => _('Reset back to default'))); + 'title' => _('Reset back to default.'))); $this->out->submit('save', // TRANS: Button text for saving theme settings. @@ -733,6 +733,6 @@ class DesignAdminPanelForm extends AdminForm 'submit form_action-secondary', 'save', // TRANS: Title for button for saving theme settings. - _('Save design')); + _('Save design.')); } } diff --git a/actions/emailsettings.php b/actions/emailsettings.php index 3e977074fc..ea35673100 100644 --- a/actions/emailsettings.php +++ b/actions/emailsettings.php @@ -527,7 +527,7 @@ class EmailsettingsAction extends AccountSettingsAction if (!$user->updateKeys($orig)) { common_log_db_error($user, 'UPDATE', __FILE__); // TRANS: Server error thrown on database error removing incoming e-mail address. - $this->serverError(_("Could not update user record.")); + $this->serverError(_('Could not update user record.')); } // TRANS: Message given after successfully removing an incoming e-mail address. @@ -551,7 +551,7 @@ class EmailsettingsAction extends AccountSettingsAction if (!$user->updateKeys($orig)) { common_log_db_error($user, 'UPDATE', __FILE__); // TRANS: Server error thrown on database error adding incoming e-mail address. - $this->serverError(_("Could not update user record.")); + $this->serverError(_('Could not update user record.')); } // TRANS: Message given after successfully adding an incoming e-mail address. diff --git a/actions/favor.php b/actions/favor.php index bcefcd26e7..61db235738 100644 --- a/actions/favor.php +++ b/actions/favor.php @@ -92,7 +92,7 @@ class FavorAction extends Action $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); // TRANS: Page title for page on which favorite notices can be unfavourited. - $this->element('title', null, _('Disfavor favorite')); + $this->element('title', null, _('Disfavor favorite.')); $this->elementEnd('head'); $this->elementStart('body'); $disfavor = new DisFavorForm($this, $notice); diff --git a/actions/groupblock.php b/actions/groupblock.php index 2ac0f633bb..d426563d8c 100644 --- a/actions/groupblock.php +++ b/actions/groupblock.php @@ -188,14 +188,14 @@ class GroupblockAction extends RedirectingAction 'submit form_action-primary', 'no', // TRANS: Submit button title for 'No' when blocking a user from a group. - _('Do not block this user from this group')); + _('Do not block this user from this group.')); $this->submit('form_action-yes', // TRANS: Button label on the form to block a user from a group. _m('BUTTON','Yes'), 'submit form_action-secondary', 'yes', // TRANS: Submit button title for 'Yes' when blocking a user from a group. - _('Block this user from this group')); + _('Block this user from this group.')); $this->elementEnd('fieldset'); $this->elementEnd('form'); } diff --git a/actions/grouplogo.php b/actions/grouplogo.php index 856c860a02..7cfd92130b 100644 --- a/actions/grouplogo.php +++ b/actions/grouplogo.php @@ -204,7 +204,7 @@ class GrouplogoAction extends GroupDesignAction $this->elementStart('li', array('id' => 'avatar_original', 'class' => 'avatar_view')); // TRANS: Uploaded original file in group logo form. - $this->element('h2', null, _("Original")); + $this->element('h2', null, _('Original')); $this->elementStart('div', array('id'=>'avatar_original_view')); $this->element('img', array('src' => $this->group->original_logo, 'alt' => $this->group->nickname)); @@ -216,7 +216,7 @@ class GrouplogoAction extends GroupDesignAction $this->elementStart('li', array('id' => 'avatar_preview', 'class' => 'avatar_view')); // TRANS: Header for preview of to be displayed group logo. - $this->element('h2', null, _("Preview")); + $this->element('h2', null, _('Preview')); $this->elementStart('div', array('id'=>'avatar_preview_view')); $this->element('img', array('src' => $this->group->homepage_logo, 'width' => AVATAR_PROFILE_SIZE, @@ -267,7 +267,7 @@ class GrouplogoAction extends GroupDesignAction array('id' => 'avatar_original', 'class' => 'avatar_view')); // TRANS: Header for originally uploaded file before a crop on the group logo page. - $this->element('h2', null, _("Original")); + $this->element('h2', null, _('Original')); $this->elementStart('div', array('id'=>'avatar_original_view')); $this->element('img', array('src' => Avatar::url($this->filedata['filename']), 'width' => $this->filedata['width'], @@ -280,7 +280,7 @@ class GrouplogoAction extends GroupDesignAction array('id' => 'avatar_preview', 'class' => 'avatar_view')); // TRANS: Header for the cropped group logo on the group logo page. - $this->element('h2', null, _("Preview")); + $this->element('h2', null, _('Preview')); $this->elementStart('div', array('id'=>'avatar_preview_view')); $this->element('img', array('src' => Avatar::url($this->filedata['filename']), 'width' => AVATAR_PROFILE_SIZE, diff --git a/actions/inbox.php b/actions/inbox.php index 6ab58f9751..e9aa34317d 100644 --- a/actions/inbox.php +++ b/actions/inbox.php @@ -126,4 +126,4 @@ class InboxMessageListItem extends MessageListItem { return $this->message->getFrom(); } -} \ No newline at end of file +} diff --git a/actions/login.php b/actions/login.php index d3e4312f71..fca5995a9a 100644 --- a/actions/login.php +++ b/actions/login.php @@ -42,13 +42,11 @@ 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 LoginAction extends Action { /** * Has there been an error? */ - var $error = null; /** @@ -56,7 +54,6 @@ class LoginAction extends Action * * @return boolean false */ - function isReadOnly($args) { return false; @@ -69,7 +66,6 @@ class LoginAction extends Action * @param $args * @return string title */ - function prepare($args) { parent::prepare($args); @@ -93,7 +89,6 @@ class LoginAction extends Action * * @return void */ - function handle($args) { parent::handle($args); @@ -117,7 +112,6 @@ class LoginAction extends Action * * @return void */ - function checkLogin($user_id=null, $token=null) { // XXX: login throttle @@ -186,7 +180,6 @@ class LoginAction extends Action * * @return void */ - function showForm($error=null) { $this->error = $error; @@ -204,7 +197,6 @@ class LoginAction extends Action * * @return string title of the page */ - function title() { return _('Login'); @@ -218,7 +210,6 @@ class LoginAction extends Action * * @return void */ - function showPageNotice() { if ($this->error) { @@ -238,7 +229,6 @@ class LoginAction extends Action * * @return void */ - function showContent() { $this->elementStart('form', array('method' => 'post', @@ -278,7 +268,6 @@ class LoginAction extends Action * * @return void */ - function getInstructions() { if (common_logged_in() && !common_is_real_login() && @@ -306,7 +295,6 @@ class LoginAction extends Action * * @return void */ - function showLocalNav() { $nav = new LoginGroupNav($this); diff --git a/actions/logout.php b/actions/logout.php index 1e0adae575..f747371225 100644 --- a/actions/logout.php +++ b/actions/logout.php @@ -66,6 +66,7 @@ class LogoutAction extends Action { parent::handle($args); if (!common_logged_in()) { + // TRANS: Client error displayed trying to log out when not logged in. $this->clientError(_('Not logged in.')); } else { if (Event::handle('StartLogout', array($this))) { @@ -83,5 +84,4 @@ class LogoutAction extends Action common_real_login(false); // not logged in common_forgetme(); // don't log back in! } - } diff --git a/actions/noticesearch.php b/actions/noticesearch.php index d0673420d6..de1e7001f4 100644 --- a/actions/noticesearch.php +++ b/actions/noticesearch.php @@ -48,7 +48,6 @@ require_once INSTALLDIR.'/lib/searchaction.php'; */ class NoticesearchAction extends SearchAction { - function prepare($args) { parent::prepare($args); @@ -65,6 +64,8 @@ class NoticesearchAction extends SearchAction */ function getInstructions() { + // TRANS: Instructions for Notice search page. + // TRANS: %%site.name%% is the name of the StatusNet site. return _('Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more.'); } @@ -75,6 +76,7 @@ class NoticesearchAction extends SearchAction */ function title() { + // TRANS: Title of the page where users can search for notices. return _('Text search'); } @@ -88,6 +90,8 @@ class NoticesearchAction extends SearchAction return array(new Feed(Feed::RSS1, common_local_url('noticesearchrss', array('q' => $q)), + // TRANS: Test in RSS notice search. + // TRANS: %1$s is the query, %2$s is the StatusNet site name. sprintf(_('Search results for "%1$s" on %2$s'), $q, common_config('site', 'name')))); } @@ -114,13 +118,18 @@ class NoticesearchAction extends SearchAction $cnt = $notice->find(); } if ($cnt === 0) { + // TRANS: Text for notice search results is the query had no results. $this->element('p', 'error', _('No results.')); $this->searchSuggestions($q); if (common_logged_in()) { + // TRANS: Text for logged in users making a query for notices without results. + // TRANS: This message contains a Markdown link. $message = sprintf(_('Be the first to [post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!'), urlencode($q)); } else { + // TRANS: Text for not logged in users making a query for notices without results. + // TRANS: This message contains Markdown links. $message = sprintf(_('Why not [register an account](%%%%action.register%%%%) and be the first to [post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!'), urlencode($q)); } @@ -203,4 +212,3 @@ class SearchNoticeListItem extends NoticeListItem { return $result; } } - diff --git a/actions/noticesearchrss.php b/actions/noticesearchrss.php index a59e7b99be..14c280f62c 100644 --- a/actions/noticesearchrss.php +++ b/actions/noticesearchrss.php @@ -48,12 +48,11 @@ require_once INSTALLDIR.'/lib/rssaction.php'; */ class NoticesearchrssAction extends Rss10Action { - function init() { return true; } - + function prepare($args) { parent::prepare($args); @@ -63,7 +62,6 @@ class NoticesearchrssAction extends Rss10Action function getNotices($limit=0) { - $q = $this->trimmed('q'); $notices = array(); @@ -93,9 +91,12 @@ class NoticesearchrssAction extends Rss10Action { $q = $this->trimmed('q'); $c = array('url' => common_local_url('noticesearchrss', array('q' => $q)), + // TRANS: RSS notice search feed title. %s is the query. 'title' => sprintf(_('Updates with "%s"'), $q), 'link' => common_local_url('noticesearch', array('q' => $q)), - 'description' => sprintf(_('Updates matching search term "%1$s" on %2$s!'), + // TRANS: RSS notice search feed description. + // TRANS: %1$s is the query, %2$s is the StatusNet site name. + 'description' => sprintf(_('Updates matching search term "%1$s" on %2$s.'), $q, common_config('site', 'name'))); return $c; } diff --git a/actions/oauthappssettings.php b/actions/oauthappssettings.php index c98c90dbf8..3c0309a489 100644 --- a/actions/oauthappssettings.php +++ b/actions/oauthappssettings.php @@ -166,6 +166,5 @@ class OauthappssettingsAction extends SettingsAction 'Try again, please.')); return; } - } } diff --git a/actions/oauthconnectionssettings.php b/actions/oauthconnectionssettings.php index cdb73203f0..e95a4a5cf5 100644 --- a/actions/oauthconnectionssettings.php +++ b/actions/oauthconnectionssettings.php @@ -64,7 +64,6 @@ class OauthconnectionssettingsAction extends ConnectSettingsAction * * @return string Title of the page */ - function title() { // TRANS: Title for OAuth connection settings. @@ -76,7 +75,6 @@ class OauthconnectionssettingsAction extends ConnectSettingsAction * * @return instructions for use */ - function getInstructions() { // TRANS: Instructions for OAuth connection settings. diff --git a/actions/oembed.php b/actions/oembed.php index bef707f92a..0d8be55656 100644 --- a/actions/oembed.php +++ b/actions/oembed.php @@ -61,7 +61,7 @@ class OembedAction extends Action $proxy_args = $r->map($path); if (!$proxy_args) { - $this->serverError(_("$path not found."), 404); + $this->serverError(sprintf(_('"%s" not found.'),$path), 404); } $oembed=array(); $oembed['version']='1.0'; @@ -73,7 +73,7 @@ class OembedAction extends Action $id = $proxy_args['notice']; $notice = Notice::staticGet($id); if(empty($notice)){ - $this->serverError(_("Notice $id not found."), 404); + $this->serverError(sprintf(_("Notice %s not found."),$id), 404); } $profile = $notice->getProfile(); if (empty($profile)) { @@ -92,7 +92,7 @@ class OembedAction extends Action $id = $proxy_args['attachment']; $attachment = File::staticGet($id); if(empty($attachment)){ - $this->serverError(_("Attachment $id not found."), 404); + $this->serverError(sprintf(_('Attachment %s not found.'),$id), 404); } if(empty($attachment->filename) && $file_oembed = File_oembed::staticGet('file_id', $attachment->id)){ // Proxy the existing oembed information @@ -133,7 +133,7 @@ class OembedAction extends Action if($attachment->title) $oembed['title']=$attachment->title; break; default: - $this->serverError(_("$path not supported for oembed requests."), 501); + $this->serverError(sprintf(_('"%s" not supported for oembed requests.'),$path), 501); } switch($args['format']){ case 'xml': diff --git a/actions/opensearch.php b/actions/opensearch.php index 861b53d7d8..7bf32277bb 100644 --- a/actions/opensearch.php +++ b/actions/opensearch.php @@ -1,5 +1,4 @@ query('COMMIT'); + // TRANS: Confirmation message after saving preferences. $this->showForm(_('Preferences saved.'), true); } } diff --git a/actions/otp.php b/actions/otp.php index 1e06603d43..c26965bd6a 100644 --- a/actions/otp.php +++ b/actions/otp.php @@ -45,7 +45,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 * @link http://status.net/ */ - class OtpAction extends Action { var $user; @@ -59,6 +58,7 @@ class OtpAction extends Action parent::prepare($args); if (common_is_real_login()) { + // TRANS: Client error displayed trying to use "one time password login" when already logged in. $this->clientError(_('Already logged in.')); return false; } @@ -66,6 +66,7 @@ class OtpAction extends Action $id = $this->trimmed('user_id'); if (empty($id)) { + // TRANS: Client error displayed trying to use "one time password login" without specifying a user. $this->clientError(_('No user ID specified.')); return false; } @@ -73,6 +74,7 @@ class OtpAction extends Action $this->user = User::staticGet('id', $id); if (empty($this->user)) { + // TRANS: Client error displayed trying to use "one time password login" without using an existing user. $this->clientError(_('No such user.')); return false; } @@ -80,6 +82,7 @@ class OtpAction extends Action $this->token = $this->trimmed('token'); if (empty($this->token)) { + // TRANS: Client error displayed trying to use "one time password login" without specifying a login token. $this->clientError(_('No login token specified.')); return false; } @@ -87,11 +90,13 @@ class OtpAction extends Action $this->lt = Login_token::staticGet('user_id', $id); if (empty($this->lt)) { + // TRANS: Client error displayed trying to use "one time password login" without requesting a login token. $this->clientError(_('No login token requested.')); return false; } if ($this->lt->token != $this->token) { + // TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token. $this->clientError(_('Invalid login token specified.')); return false; } @@ -101,6 +106,7 @@ class OtpAction extends Action //delete the token as it is useless $this->lt->delete(); $this->lt = null; + // TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token. $this->clientError(_('Login token expired.')); return false; } @@ -111,12 +117,13 @@ class OtpAction extends Action return true; } - function handle($args) + function handle($args) { parent::handle($args); // success! if (!common_set_user($this->user)) { + // TRANS: Server error displayed when a user object could not be created trying to login using "one time password login". $this->serverError(_('Error setting user. You are probably not authorized.')); return; } diff --git a/actions/outbox.php b/actions/outbox.php index cad19bba24..6d10c8119f 100644 --- a/actions/outbox.php +++ b/actions/outbox.php @@ -26,7 +26,6 @@ * @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); } @@ -43,7 +42,6 @@ require_once INSTALLDIR.'/lib/mailbox.php'; * @link http://status.net/ * @see MailboxAction */ - class OutboxAction extends MailboxAction { /** @@ -51,13 +49,15 @@ class OutboxAction extends MailboxAction * * @return string page title */ - function title() { if ($this->page > 1) { + // TRANS: Title for outbox for any but the fist page. + // TRANS: %1$s is the user nickname, %2$d is the page number. return sprintf(_('Outbox for %1$s - page %2$d'), $this->user->nickname, $page); } else { + // TRANS: Title for first page of outbox. return sprintf(_('Outbox for %s'), $this->user->nickname); } } @@ -71,7 +71,6 @@ class OutboxAction extends MailboxAction * * @see MailboxAction::getMessages() */ - function getMessages() { $message = new Message(); @@ -98,9 +97,9 @@ class OutboxAction extends MailboxAction * * @return string localised instructions for using the page */ - function getInstructions() { + // TRANS: Instructions for outbox. return _('This is your outbox, which lists private messages you have sent.'); } } @@ -124,4 +123,4 @@ class OutboxMessageListItem extends MessageListItem { return $this->message->getTo(); } -} \ No newline at end of file +} diff --git a/actions/passwordsettings.php b/actions/passwordsettings.php index 3bb8e3bb9f..46d95efcbe 100644 --- a/actions/passwordsettings.php +++ b/actions/passwordsettings.php @@ -106,11 +106,11 @@ class PasswordsettingsAction extends AccountSettingsAction } $this->elementStart('li'); $this->password('newpassword', _('New password'), - _('6 or more characters')); + _('6 or more characters.')); $this->elementEnd('li'); $this->elementStart('li'); $this->password('confirm', _('Confirm'), - _('Same as password above')); + _('Same as password above.')); $this->elementEnd('li'); $this->elementEnd('ul'); @@ -128,7 +128,6 @@ class PasswordsettingsAction extends AccountSettingsAction * * @return void */ - function handlePost() { // CSRF protection @@ -183,7 +182,7 @@ class PasswordsettingsAction extends AccountSettingsAction } if (!$user->update($original)) { - $this->serverError(_('Can\'t save new password.')); + $this->serverError(_('Cannot save new password.')); return; } Event::handle('EndChangePassword', array($user)); diff --git a/actions/peoplesearch.php b/actions/peoplesearch.php index 69de44859f..6bc35828ec 100644 --- a/actions/peoplesearch.php +++ b/actions/peoplesearch.php @@ -49,12 +49,15 @@ class PeoplesearchAction extends SearchAction { function getInstructions() { + // TRANS: Instructions for the "People search" page. + // TRANS: %%site.name%% is the name of the StatusNet site. return _('Search for people on %%site.name%% by their name, location, or interests. ' . 'Separate the terms by spaces; they must be 3 characters or more.'); } function title() { + // TRANS: Title of a page where users can search for other users. return _('People search'); } @@ -80,6 +83,7 @@ class PeoplesearchAction extends SearchAction $page, 'peoplesearch', array('q' => $q)); } else { + // TRANS: Message on the "People search" page where a query has no results. $this->element('p', 'error', _('No results.')); $this->searchSuggestions($q); $profile->free(); @@ -136,4 +140,3 @@ class PeopleSearchResultItem extends ProfileListItem return preg_replace($this->pattern, '\\1', htmlspecialchars($text)); } } - diff --git a/actions/profilesettings.php b/actions/profilesettings.php index ee50e104d8..259b54bd03 100644 --- a/actions/profilesettings.php +++ b/actions/profilesettings.php @@ -161,14 +161,14 @@ class ProfilesettingsAction extends AccountSettingsAction $this->input('tags', _('Tags'), ($this->arg('tags')) ? $this->arg('tags') : implode(' ', $user->getSelfTags()), // TRANS: Tooltip for field label in form for profile settings. - _('Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated')); + _('Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated.')); $this->elementEnd('li'); $this->elementStart('li'); $language = common_language(); // TRANS: Dropdownlist label in form for profile settings. $this->dropdown('language', _('Language'), // TRANS: Tooltip for dropdown list label in form for profile settings. - get_nice_language_list(), _('Preferred language'), + get_nice_language_list(), _('Preferred language.'), false, $language); $this->elementEnd('li'); $timezone = common_timezone(); @@ -187,7 +187,7 @@ class ProfilesettingsAction extends AccountSettingsAction $this->checkbox('autosubscribe', // TRANS: Checkbox label in form for profile settings. _('Automatically subscribe to whoever '. - 'subscribes to me (best for non-humans)'), + 'subscribes to me (best for non-humans).'), ($this->arg('autosubscribe')) ? $this->boolean('autosubscribe') : $user->autosubscribe); $this->elementEnd('li'); @@ -288,7 +288,7 @@ class ProfilesettingsAction extends AccountSettingsAction if (!common_valid_profile_tag($tag)) { // TRANS: Validation error in form for profile settings. // TRANS: %s is an invalid tag. - $this->showForm(sprintf(_('Invalid tag: "%s"'), $tag)); + $this->showForm(sprintf(_('Invalid tag: "%s".'), $tag)); return; } } diff --git a/actions/publicrss.php b/actions/publicrss.php index 0c5d061cb6..11db3b37a4 100644 --- a/actions/publicrss.php +++ b/actions/publicrss.php @@ -1,5 +1,4 @@ common_local_url('publicrss') - , 'title' => sprintf(_('%s public timeline'), common_config('site', 'name')) - , 'link' => common_local_url('public') - , 'description' => sprintf(_('%s updates from everyone!'), common_config('site', 'name'))); + 'url' => common_local_url('publicrss'), + // TRANS: Public RSS feed title. %s is the StatusNet site name. + 'title' => sprintf(_('%s public timeline'), $sitename), + 'link' => common_local_url('public'), + // TRANS: Public RSS feed description. %s is the StatusNet site name. + 'description' => sprintf(_('%s updates from everyone.'), $sitename)); return $c; } @@ -110,7 +111,7 @@ class PublicrssAction extends Rss10Action * Get image. * * @return nothing - */ + */ function getImage() { // nop @@ -121,4 +122,3 @@ class PublicrssAction extends Rss10Action return true; } } - diff --git a/actions/recoverpassword.php b/actions/recoverpassword.php index c41edaeea4..9019d6fb22 100644 --- a/actions/recoverpassword.php +++ b/actions/recoverpassword.php @@ -226,7 +226,7 @@ class RecoverpasswordAction extends Action // TRANS: Title for password recovery page in email sent mode. case 'sent': return _('Password recovery requested'); // TRANS: Title for password recovery page in password saved mode. - case 'saved': return _('Password saved.'); + case 'saved': return _('Password saved'); default: // TRANS: Title for password recovery page when an unknown action has been specified. return _('Unknown action'); diff --git a/actions/register.php b/actions/register.php index 488d8901fc..e386a8fc8a 100644 --- a/actions/register.php +++ b/actions/register.php @@ -40,25 +40,21 @@ 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 RegisterAction extends Action { /** * Has there been an error? */ - var $error = null; /** * Have we registered? */ - var $registered = false; /** * Are we processing an invite? */ - var $invite = null; /** @@ -68,7 +64,6 @@ class RegisterAction extends Action * @param $args * @return string title */ - function prepare($args) { parent::prepare($args); @@ -112,7 +107,6 @@ class RegisterAction extends Action * * @return string title */ - function title() { if ($this->registered) { @@ -133,7 +127,6 @@ class RegisterAction extends Action * * @return void */ - function handle($args) { parent::handle($args); @@ -163,7 +156,6 @@ class RegisterAction extends Action * * @return void */ - function tryRegister() { if (Event::handle('StartRegistrationTry', array($this))) { @@ -206,7 +198,7 @@ class RegisterAction extends Action $email = common_canonical_email($email); if (!$this->boolean('license')) { - $this->showForm(_('You can\'t register if you don\'t '. + $this->showForm(_('You cannot register if you don\'t '. 'agree to the license.')); } else if ($email && !Validate::email($email, common_config('email', 'check_domain'))) { $this->showForm(_('Not a valid email address.')); @@ -284,7 +276,6 @@ class RegisterAction extends Action * * @return boolean true if the nickname already exists */ - function nicknameExists($nickname) { $user = User::staticGet('nickname', $nickname); @@ -300,7 +291,6 @@ class RegisterAction extends Action * * @return boolean true if the address already exists */ - function emailExists($email) { $email = common_canonical_email($email); @@ -339,7 +329,6 @@ class RegisterAction extends Action * * @return void */ - function showPageNotice() { if ($this->registered) { @@ -351,7 +340,7 @@ class RegisterAction extends Action common_markup_to_html(_('With this form you can create '. 'a new account. ' . 'You can then post notices and '. - 'link up to friends and colleagues. ')); + 'link up to friends and colleagues.')); $this->elementStart('div', 'instructions'); $this->raw($instr); @@ -368,7 +357,6 @@ class RegisterAction extends Action * * @return void */ - function showForm($error=null) { $this->error = $error; @@ -383,7 +371,6 @@ class RegisterAction extends Action * * @return void */ - function showContent() { if ($this->registered) { @@ -398,7 +385,6 @@ class RegisterAction extends Action * * @return void */ - function showFormContent() { $code = $this->trimmed('code'); @@ -444,23 +430,23 @@ class RegisterAction extends Action if ($this->invite && $this->invite->address_type == 'email') { $this->input('email', _('Email'), $this->invite->address, _('Used only for updates, announcements, '. - 'and password recovery')); + 'and password recovery.')); } else { $this->input('email', _('Email'), $this->trimmed('email'), _('Used only for updates, announcements, '. - 'and password recovery')); + 'and password recovery.')); } $this->elementEnd('li'); $this->elementStart('li'); $this->input('fullname', _('Full name'), $this->trimmed('fullname'), - _('Longer name, preferably your "real" name')); + _('Longer name, preferably your "real" name.')); $this->elementEnd('li'); $this->elementStart('li'); $this->input('homepage', _('Homepage'), $this->trimmed('homepage'), _('URL of your homepage, blog, '. - 'or profile on another site')); + 'or profile on another site.')); $this->elementEnd('li'); $this->elementStart('li'); $maxBio = Profile::maxBio(); @@ -483,7 +469,7 @@ class RegisterAction extends Action $this->input('location', _('Location'), $this->trimmed('location'), _('Where you are, like "City, '. - 'State (or Region), Country"')); + 'State (or Region), Country".')); $this->elementEnd('li'); Event::handle('EndRegistrationFormData', array($this)); $this->elementStart('li', array('id' => 'settings_rememberme')); @@ -519,6 +505,7 @@ class RegisterAction extends Action switch (common_config('license', 'type')) { case 'private': // TRANS: Copyright checkbox label in registration dialog, for private sites. + // TRANS: %1$s is the StatusNet sitename. $out .= htmlspecialchars(sprintf( _('I understand that content and data of %1$s are private and confidential.'), common_config('site', 'name'))); @@ -562,7 +549,6 @@ class RegisterAction extends Action * * @return void */ - function showSuccess() { $this->registered = true; @@ -576,7 +562,6 @@ class RegisterAction extends Action * * @return void */ - function showSuccessContent() { $nickname = $this->arg('nickname'); @@ -623,11 +608,9 @@ class RegisterAction extends Action * * @return void */ - function showLocalNav() { $nav = new LoginGroupNav($this); $nav->show(); } } - diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php index 63ba618c41..8200659278 100644 --- a/actions/remotesubscribe.php +++ b/actions/remotesubscribe.php @@ -126,11 +126,11 @@ class RemotesubscribeAction extends Action $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->input('nickname', _('User nickname'), $this->nickname, - _('Nickname of the user you want to follow')); + _('Nickname of the user you want to follow.')); $this->elementEnd('li'); $this->elementStart('li'); $this->input('profile_url', _('Profile URL'), $this->profile_url, - _('URL of your profile on another compatible microblogging service')); + _('URL of your profile on another compatible microblogging service.')); $this->elementEnd('li'); $this->elementEnd('ul'); $this->submit('submit', _('Subscribe')); @@ -155,7 +155,7 @@ class RemotesubscribeAction extends Action } if (!common_valid_http_url($this->profile_url)) { - $this->showForm(_('Invalid profile URL (bad format)')); + $this->showForm(_('Invalid profile URL (bad format).')); return; } diff --git a/actions/repeat.php b/actions/repeat.php index 60b238f3a7..2ec641578b 100644 --- a/actions/repeat.php +++ b/actions/repeat.php @@ -72,7 +72,7 @@ class RepeatAction extends Action } if ($this->user->id == $this->notice->profile_id) { - $this->clientError(_("You cannot repeat your own notice.")); + $this->clientError(_('You cannot repeat your own notice.')); return false; } diff --git a/actions/repliesrss.php b/actions/repliesrss.php index 76aae21adb..86cd173d3c 100644 --- a/actions/repliesrss.php +++ b/actions/repliesrss.php @@ -25,7 +25,6 @@ require_once(INSTALLDIR.'/lib/rssaction.php'); class RepliesrssAction extends Rss10Action { - var $user = null; function prepare($args) @@ -35,6 +34,7 @@ class RepliesrssAction extends Rss10Action $this->user = User::staticGet('nickname', $nickname); if (!$this->user) { + // TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action. $this->clientError(_('No such user.')); return false; } else { @@ -45,13 +45,12 @@ class RepliesrssAction extends Rss10Action function getNotices($limit=0) { - $user = $this->user; $notice = $user->getReplies(0, ($limit == 0) ? 48 : $limit); $notices = array(); - + while ($notice->fetch()) { $notices[] = clone($notice); } @@ -65,11 +64,14 @@ class RepliesrssAction extends Rss10Action $c = array('url' => common_local_url('repliesrss', array('nickname' => $user->nickname)), + // TRANS: RSS reply feed title. %s is a user nickname. 'title' => sprintf(_("Replies to %s"), $user->nickname), 'link' => common_local_url('replies', array('nickname' => $user->nickname)), - 'description' => sprintf(_('Replies to %1$s on %2$s!'), + // TRANS: RSS reply feed description. + // TRANS: %1$s is a user nickname, %2$s is the StatusNet site name. + 'description' => sprintf(_('Replies to %1$s on %2$s.'), $user->nickname, common_config('site', 'name'))); return $c; } diff --git a/actions/requesttoken.php b/actions/requesttoken.php index e095161a7d..3c8cea03c0 100644 --- a/actions/requesttoken.php +++ b/actions/requesttoken.php @@ -1,5 +1,4 @@ diff --git a/actions/restoreaccount.php b/actions/restoreaccount.php index b32553a68d..22f0a8e5da 100644 --- a/actions/restoreaccount.php +++ b/actions/restoreaccount.php @@ -57,7 +57,7 @@ class RestoreaccountAction extends Action function title() { // TRANS: Page title for page where a user account can be restored from backup. - return _("Restore account"); + return _('Restore account'); } /** diff --git a/actions/robotstxt.php b/actions/robotstxt.php index 5131097c8c..d686042cb1 100644 --- a/actions/robotstxt.php +++ b/actions/robotstxt.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class RobotstxtAction extends Action { /** @@ -53,7 +52,6 @@ class RobotstxtAction extends Action * * @return void */ - function handle($args) { if (Event::handle('StartRobotsTxt', array($this))) { @@ -65,9 +63,7 @@ class RobotstxtAction extends Action if (common_config('site', 'private')) { print "Disallow: /\n"; - } else { - $disallow = common_config('robotstxt', 'disallow'); foreach ($disallow as $dir) { @@ -92,7 +88,6 @@ class RobotstxtAction extends Action * * @return boolean is read only action? */ - function isReadOnly($args) { return true; diff --git a/actions/rsd.php b/actions/rsd.php index e02c85c41b..0a70117498 100644 --- a/actions/rsd.php +++ b/actions/rsd.php @@ -68,13 +68,11 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class RsdAction extends Action { /** * Optional attribute for the personal rsd.xml file. */ - var $user = null; /** @@ -87,7 +85,6 @@ class RsdAction extends Action * * @return boolean success flag */ - function prepare($args) { parent::prepare($args); @@ -132,7 +129,6 @@ class RsdAction extends Action * * @return nothing */ - function handle($args) { header('Content-Type: application/rsd+xml'); @@ -195,7 +191,6 @@ class RsdAction extends Action * * @return string date of last change of this page */ - function lastModified() { if (!empty($this->user)) { @@ -214,7 +209,6 @@ class RsdAction extends Action * * @return boolean true */ - function isReadOnly($args) { return true; @@ -228,7 +222,6 @@ class RsdAction extends Action * * @return string API root URI for this site */ - private function _apiRoot() { if (common_config('site', 'fancy')) { diff --git a/actions/showapplication.php b/actions/showapplication.php index 10aaff538f..f16cc3259a 100644 --- a/actions/showapplication.php +++ b/actions/showapplication.php @@ -40,19 +40,16 @@ 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 ShowApplicationAction extends OwnerDesignAction { /** * Application to show */ - var $application = null; /** * User who owns the app */ - var $owner = null; var $msg = null; @@ -68,7 +65,6 @@ class ShowApplicationAction extends OwnerDesignAction * * @return success flag */ - function prepare($args) { parent::prepare($args); @@ -105,7 +101,6 @@ class ShowApplicationAction extends OwnerDesignAction * * @return void */ - function handle($args) { parent::handle($args); @@ -132,7 +127,6 @@ class ShowApplicationAction extends OwnerDesignAction * * @return string title of the page */ - function title() { if (!empty($this->application->name)) { @@ -301,7 +295,6 @@ class ShowApplicationAction extends OwnerDesignAction * * @return void */ - function showScripts() { parent::showScripts(); @@ -322,7 +315,6 @@ class ShowApplicationAction extends OwnerDesignAction * XXX: Should this be moved to its own page with a confirm? * */ - function resetKey() { $this->application->query('BEGIN'); @@ -382,5 +374,4 @@ class ShowApplicationAction extends OwnerDesignAction $this->msg = ('Consumer key and secret reset.'); $this->showPage(); } - } diff --git a/actions/shownotice.php b/actions/shownotice.php index b4af7dbaa2..e2a03e2fd1 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -344,7 +344,7 @@ class SingleNoticeItem extends DoFollowListItem * show the avatar of the notice's author * * We use the larger size for single notice page. - * + * * @return void */ diff --git a/actions/showstream.php b/actions/showstream.php index 8a67d3fc9c..1f5d85ea4e 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -70,7 +70,7 @@ class ShowstreamAction extends ProfileAction return sprintf(_('%1$s tagged %2$s'), $base, $this->tag); } else { // TRANS: Page title showing tagged notices in one user's stream. - // TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. + // TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. return sprintf(_('%1$s tagged %2$s, page %3$d'), $base, $this->tag, $this->page); } } else { diff --git a/actions/sitenoticeadminpanel.php b/actions/sitenoticeadminpanel.php index 797a6c4f4c..b1ac441af7 100644 --- a/actions/sitenoticeadminpanel.php +++ b/actions/sitenoticeadminpanel.php @@ -98,7 +98,7 @@ class SitenoticeadminpanelAction extends AdminPanelAction if (!$result) { // TRANS: Server error displayed when saving a site-wide notice was impossible. - $this->ServerError(_("Unable to save site notice.")); + $this->ServerError(_('Unable to save site notice.')); } } @@ -198,7 +198,7 @@ class SiteNoticeAdminPanelForm extends AdminForm 'submit', null, // TRANS: Title for button to save site notice in admin panel. - _('Save site notice') + _('Save site notice.') ); } } diff --git a/actions/smssettings.php b/actions/smssettings.php index f9a79e1664..228c7878d2 100644 --- a/actions/smssettings.php +++ b/actions/smssettings.php @@ -150,7 +150,7 @@ class SmssettingsAction extends ConnectSettingsAction ($this->arg('sms')) ? $this->arg('sms') : null, // TRANS: SMS phone number input field instructions in SMS settings form. _('Phone number, no punctuation or spaces, '. - 'with area code')); + 'with area code.')); $this->elementEnd('li'); $this->elementEnd('ul'); $this->carrierSelect(); @@ -562,9 +562,11 @@ class SmssettingsAction extends ConnectSettingsAction if (!$user->updateKeys($orig)) { common_log_db_error($user, 'UPDATE', __FILE__); - $this->serverError(_("Could not update user record.")); + // TRANS: Server error displayed when the user could not be updated in SMS settings. + $this->serverError(_('Could not update user record.')); } + // TRANS: Confirmation text after updating SMS settings. $this->showForm(_('Incoming email address removed.'), true); } @@ -585,9 +587,11 @@ class SmssettingsAction extends ConnectSettingsAction if (!$user->updateKeys($orig)) { common_log_db_error($user, 'UPDATE', __FILE__); - $this->serverError(_("Could not update user record.")); + // TRANS: Server error displayed when the user could not be updated in SMS settings. + $this->serverError(_('Could not update user record.')); } + // TRANS: Confirmation text after updating SMS settings. $this->showForm(_('New incoming email address added.'), true); } } diff --git a/actions/subscribe.php b/actions/subscribe.php index b1243f3933..3837915d53 100644 --- a/actions/subscribe.php +++ b/actions/subscribe.php @@ -53,7 +53,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 * @link http://status.net/ */ - class SubscribeAction extends Action { var $user; @@ -66,7 +65,6 @@ class SubscribeAction extends Action * * @return boolean success flag */ - function prepare($args) { parent::prepare($args); @@ -74,6 +72,8 @@ class SubscribeAction extends Action // Only allow POST requests if ($_SERVER['REQUEST_METHOD'] != 'POST') { + // TRANS: Client error displayed trying to perform any request method other than POST. + // TRANS: Do not translate POST. $this->clientError(_('This action only accepts POST requests.')); return false; } @@ -83,6 +83,7 @@ class SubscribeAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token is not okay. $this->clientError(_('There was a problem with your session token.'. ' Try again, please.')); return false; @@ -93,6 +94,7 @@ class SubscribeAction extends Action $this->user = common_current_user(); if (empty($this->user)) { + // TRANS: Client error displayed trying to subscribe when not logged in. $this->clientError(_('Not logged in.')); return false; } @@ -104,6 +106,7 @@ class SubscribeAction extends Action $this->other = Profile::staticGet('id', $other_id); if (empty($this->other)) { + // TRANS: Client error displayed trying to subscribe to a non-existing profile. $this->clientError(_('No such profile.')); return false; } @@ -114,6 +117,7 @@ class SubscribeAction extends Action $omb01 = Remote_profile::staticGet('id', $other_id); if (!empty($omb01)) { + // TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. $this->clientError(_('You cannot subscribe to an OMB 0.1'. ' remote profile with this action.')); return false; @@ -131,7 +135,6 @@ class SubscribeAction extends Action * * @return void */ - function handle($args) { // Throws exception on error @@ -142,6 +145,7 @@ class SubscribeAction extends Action if ($this->boolean('ajax')) { $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); + // TRANS: Page title when subscription succeeded. $this->element('title', null, _('Subscribed')); $this->elementEnd('head'); $this->elementStart('body'); diff --git a/actions/sup.php b/actions/sup.php index 4e428dfa58..c4da9d3db6 100644 --- a/actions/sup.php +++ b/actions/sup.php @@ -19,6 +19,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +// @todo FIXME: documentation needed. class SupAction extends Action { function handle($args) diff --git a/actions/unblock.php b/actions/unblock.php index 0f63e1dae0..1f4d9606b8 100644 --- a/actions/unblock.php +++ b/actions/unblock.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class UnblockAction extends ProfileFormAction { function prepare($args) @@ -56,6 +55,7 @@ class UnblockAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if (!$cur->hasBlocked($this->profile)) { + // TRANS: Client error displayed when trying to unblock a non-blocked user. $this->clientError(_("You haven't blocked that user.")); return false; } @@ -68,7 +68,6 @@ class UnblockAction extends ProfileFormAction * * @return void */ - function handlePost() { $cur = common_current_user(); @@ -83,6 +82,7 @@ class UnblockAction extends ProfileFormAction } if (!$result) { + // TRANS: Server error displayed when removing a user block. $this->serverError(_('Error removing the block.')); return; } diff --git a/actions/useradminpanel.php b/actions/useradminpanel.php index fc75e83b2d..c8861bd834 100644 --- a/actions/useradminpanel.php +++ b/actions/useradminpanel.php @@ -163,7 +163,7 @@ class UseradminpanelAction extends AdminPanelAction sprintf( // TRANS: Client error displayed when trying to set a non-existing user as default subscription for new // TRANS: users in user admin panel. %1$s is the invalid nickname. - _('Invalid default subscripton: \'%1$s\' is not a user.'), + _('Invalid default subscripton: "%1$s" is not a user.'), $values['newuser']['default'] ) ); @@ -299,6 +299,6 @@ class UserAdminPanelForm extends AdminForm 'submit', null, // TRANS: Title for button to save user settings in user admin panel. - _('Save user settings')); + _('Save user settings.')); } } diff --git a/actions/userauthorization.php b/actions/userauthorization.php index e896ff96ca..b7192ccdb2 100644 --- a/actions/userauthorization.php +++ b/actions/userauthorization.php @@ -35,6 +35,7 @@ require_once INSTALLDIR.'/extlib/libomb/service_provider.php'; require_once INSTALLDIR.'/extlib/libomb/profile.php'; define('TIMESTAMP_THRESHOLD', 300); +// @todo FIXME: Missing documentation. class UserauthorizationAction extends Action { var $error; @@ -69,6 +70,8 @@ class UserauthorizationAction extends Action $profile = $user->getProfile(); if (!$profile) { common_log_db_error($user, 'SELECT', __FILE__); + // TRANS: Server error displayed when trying to authorise a remote subscription request + // TRANS: while the user has no profile. $this->serverError(_('User without matching profile.')); return; } @@ -102,16 +105,18 @@ class UserauthorizationAction extends Action function title() { + // TRANS: Page title. return _('Authorize subscription'); } function showPageNotice() { + // TRANS: Page notice on "Auhtorize subscription" page. $this->element('p', null, _('Please check these details to make sure '. 'that you want to subscribe to this ' . 'user’s notices. If you didn’t just ask ' . 'to subscribe to someone’s notices, '. - 'click “Reject”.')); + 'click "Reject".')); } function showContent() @@ -129,6 +134,7 @@ class UserauthorizationAction extends Action $this->elementStart('div', 'entity_profile vcard'); $this->elementStart('dl', 'entity_depiction'); + // TRANS: DT element on Authorise Subscription page. $this->element('dt', null, _('Photo')); $this->elementStart('dd'); if ($avatar) { @@ -142,6 +148,7 @@ class UserauthorizationAction extends Action $this->elementEnd('dl'); $this->elementStart('dl', 'entity_nickname'); + // TRANS: DT element on Authorise Subscription page. $this->element('dt', null, _('Nickname')); $this->elementStart('dd'); $hasFN = ($fullname !== '') ? 'nickname' : 'fn nickname'; @@ -163,6 +170,7 @@ class UserauthorizationAction extends Action } if (!is_null($location)) { $this->elementStart('dl', 'entity_location'); + // TRANS: DT element on Authorise Subscription page. $this->element('dt', null, _('Location')); $this->elementStart('dd', 'label'); $this->raw($location); @@ -172,6 +180,7 @@ class UserauthorizationAction extends Action if (!is_null($homepage)) { $this->elementStart('dl', 'entity_url'); + // TRANS: DT element on Authorise Subscription page. $this->element('dt', null, _('URL')); $this->elementStart('dd'); $this->elementStart('a', array('href' => $homepage, @@ -184,6 +193,7 @@ class UserauthorizationAction extends Action if (!is_null($bio)) { $this->elementStart('dl', 'entity_note'); + // TRANS: DT element on Authorise Subscription page where bio is displayed. $this->element('dt', null, _('Note')); $this->elementStart('dd', 'note'); $this->raw($bio); @@ -193,6 +203,7 @@ class UserauthorizationAction extends Action if (!is_null($license)) { $this->elementStart('dl', 'entity_license'); + // TRANS: DT element on Authorise Subscription page where license is displayed. $this->element('dt', null, _('License')); $this->elementStart('dd', 'license'); $this->element('a', array('href' => $license, @@ -214,10 +225,14 @@ class UserauthorizationAction extends Action 'userauthorization'))); $this->hidden('token', common_session_token()); - $this->submit('accept', _('Accept'), 'submit accept', null, - _('Subscribe to this user')); - $this->submit('reject', _('Reject'), 'submit reject', null, - _('Reject this subscription')); + // TRANS: Button text on Authorise Subscription page. + $this->submit('accept', _m('BUTTON','Accept'), 'submit accept', null, + // TRANS: Title for button on Authorise Subscription page. + _('Subscribe to this user.')); + // TRANS: Button text on Authorise Subscription page. + $this->submit('reject', _m('BUTTON','Reject'), 'submit reject', null, + // TRANS: Title for button on Authorise Subscription page. + _('Reject this subscription.')); $this->elementEnd('form'); $this->elementEnd('li'); $this->elementEnd('ul'); @@ -229,6 +244,7 @@ class UserauthorizationAction extends Action $srv = $this->getStoredParams(); if (is_null($srv)) { + // TRANS: Client error displayed for an empty authorisation request. $this->clientError(_('No authorization request!')); return; } @@ -251,7 +267,9 @@ class UserauthorizationAction extends Action function showAcceptMessage($tok) { + // TRANS: Accept message header from Authorise subscription page. common_show_header(_('Subscription authorized')); + // TRANS: Accept message text from Authorise subscription page. $this->element('p', null, _('The subscription has been authorized, but no '. 'callback URL was passed. Check with the site’s ' . @@ -263,7 +281,9 @@ class UserauthorizationAction extends Action function showRejectMessage() { + // TRANS: Reject message header from Authorise subscription page. common_show_header(_('Subscription rejected')); + // TRANS: Reject message from Authorise subscription page. $this->element('p', null, _('The subscription has been rejected, but no '. 'callback URL was passed. Check with the site’s ' . @@ -300,18 +320,24 @@ class UserauthorizationAction extends Action $user = User::staticGet('uri', $listener); if (!$user) { - throw new Exception(sprintf(_('Listener URI ‘%s’ not found here.'), + // TRANS: Exception thrown when no valid user is found for an authorisation request. + // TRANS: %s is a listener URI. + throw new Exception(sprintf(_('Listener URI "%s" not found here.'), $listener)); } if (strlen($listenee) > 255) { - throw new Exception(sprintf(_('Listenee URI ‘%s’ is too long.'), + // TRANS: Exception thrown when listenee URI is too long for an authorisation request. + // TRANS: %s is a listenee URI. + throw new Exception(sprintf(_('Listenee URI "%s" is too long.'), $listenee)); } $other = User::staticGet('uri', $listenee); if ($other) { - throw new Exception(sprintf(_('Listenee URI ‘%s’ is a local user.'), + // TRANS: Exception thrown when listenee URI is a local user for an authorisation request. + // TRANS: %s is a listenee URI. + throw new Exception(sprintf(_('Listenee URI "%s" is a local user.'), $listenee)); } @@ -321,12 +347,15 @@ class UserauthorizationAction extends Action $sub->subscriber = $user->id; $sub->subscribed = $remote->id; if ($sub->find(true)) { + // TRANS: Exception thrown when already subscribed. throw new Exception('You are already subscribed to this user.'); } } if ($profile == common_profile_url($nickname)) { - throw new Exception(sprintf(_('Profile URL ‘%s’ is for a local user.'), + // TRANS: Exception thrown when profile URL is a local user for an authorisation request. + // TRANS: %s is a profile URL. + throw new Exception(sprintf(_('Profile URL "%s" is for a local user.'), $profile)); } @@ -334,26 +363,34 @@ class UserauthorizationAction extends Action $license = $_GET['omb_listenee_license']; $site_license = common_config('license', 'url'); if (!common_compatible_license($license, $site_license)) { - throw new Exception(sprintf(_('Listenee stream license ‘%1$s’ is not ' . - 'compatible with site license ‘%2$s’.'), + // TRANS: Exception thrown when licenses are not compatible for an authorisation request. + // TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. + throw new Exception(sprintf(_('Listenee stream license "%1$s" is not ' . + 'compatible with site license "%2$s".'), $license, $site_license)); } $avatar = $_GET['omb_listenee_avatar']; if ($avatar) { if (!common_valid_http_url($avatar) || strlen($avatar) > 255) { - throw new Exception(sprintf(_('Avatar URL ‘%s’ is not valid.'), + // TRANS: Exception thrown when avatar URL is invalid for an authorisation request. + // TRANS: %s is an avatar URL. + throw new Exception(sprintf(_('Avatar URL "%s" is not valid.'), $avatar)); } $size = @getimagesize($avatar); if (!$size) { - throw new Exception(sprintf(_('Can’t read avatar URL ‘%s’.'), + // TRANS: Exception thrown when avatar URL could not be read for an authorisation request. + // TRANS: %s is an avatar URL. + throw new Exception(sprintf(_('Cannot read avatar URL "%s".'), $avatar)); } if (!in_array($size[2], array(IMAGETYPE_GIF, IMAGETYPE_JPEG, IMAGETYPE_PNG))) { + // TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. + // TRANS: %s is an avatar URL. throw new Exception(sprintf(_('Wrong image type for avatar URL '. - '‘%s’.'), $avatar)); + '"%s".'), $avatar)); } } } diff --git a/actions/userbyid.php b/actions/userbyid.php index f3e1556f3f..b8ccd0108e 100644 --- a/actions/userbyid.php +++ b/actions/userbyid.php @@ -1,5 +1,4 @@ trimmed('id'); if (!$id) { + // TRANS: Client error displayed trying to find a user by ID without providing an ID. $this->clientError(_('No ID.')); } $user = User::staticGet($id); if (!$user) { + // TRANS: Client error displayed trying to find a user by ID for a non-existing ID. $this->clientError(_('No such user.')); } diff --git a/actions/userxrd.php b/actions/userxrd.php index 582f7a35e7..7691ff155b 100644 --- a/actions/userxrd.php +++ b/actions/userxrd.php @@ -56,7 +56,7 @@ class UserxrdAction extends XrdAction } if (!$this->user) { - $this->clientError(_m('No such user.'), 404); + $this->clientError(_('No such user.'), 404); return false; } diff --git a/actions/xrds.php b/actions/xrds.php index 534182e3ed..818cd1032c 100644 --- a/actions/xrds.php +++ b/actions/xrds.php @@ -1,5 +1,4 @@ trimmed('nickname'); $this->user = User::staticGet('nickname', $nickname); if (!$this->user) { + // TRANS: Client error displayed providing a non-existing nickname. $this->clientError(_('No such user.')); return; } @@ -110,7 +110,7 @@ class XrdsAction extends Action null, array(OAUTH_AUTH_HEADER, OAUTH_POST_BODY, OAUTH_HMAC_SHA1)); $xrdsOutputter->elementEnd('XRD'); - + //omb $xrdsOutputter->elementStart('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)', 'xml:id' => 'omb', @@ -122,7 +122,7 @@ class XrdsAction extends Action $xrdsOutputter->showXrdsService(OMB_ENDPOINT_UPDATEPROFILE, common_local_url('updateprofile')); $xrdsOutputter->elementEnd('XRD'); - + Event::handle('EndUserXRDS', array($this,&$xrdsOutputter)); //misc @@ -135,7 +135,5 @@ class XrdsAction extends Action $xrdsOutputter->elementEnd('XRD'); $xrdsOutputter->endXRDS(); - } } -?> diff --git a/lib/plugin.php b/lib/plugin.php index 1ccf23a095..0e8c0a742d 100644 --- a/lib/plugin.php +++ b/lib/plugin.php @@ -162,6 +162,14 @@ class Plugin $path = common_config('site', 'path') . '/plugins/'; } + if ($path[strlen($path)-1] != '/') { + $path .= '/'; + } + + if ($path[0] != '/') { + $path = '/'.$path; + } + $protocol = ($isHTTPS) ? 'https' : 'http'; return $protocol.'://'.$server.$path.$plugin.'/'.$relative; diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index bb965033a4..c69f9f73c2 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -12,19 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:05:12+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:26:59+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -156,7 +156,7 @@ msgstr "لا صفحة كهذه." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -516,7 +516,7 @@ msgstr "لم يُعثر على المستخدم المستلم." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" #. TRANS: Client error displayed trying to direct message self (403). @@ -599,7 +599,7 @@ msgstr "تعذّر إيجاد المستخدم الهدف." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمًا آخرًا." @@ -609,7 +609,7 @@ msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمً #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "ليس اسمًا مستعارًا صحيحًا." @@ -622,7 +622,7 @@ msgstr "ليس اسمًا مستعارًا صحيحًا." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "الصفحة الرئيسية ليست عنونًا صالحًا." @@ -632,7 +632,7 @@ msgstr "الصفحة الرئيسية ليست عنونًا صالحًا." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "الاسم الكامل طويل جدًا (الحد الأقصى 255 حرفًا)." @@ -664,7 +664,7 @@ msgstr[5] "المنظمة طويلة جدا (الأقصى %d حرفا)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "المنظمة طويلة جدا (الأقصى 255 حرفا)." @@ -830,15 +830,15 @@ msgstr "لا تملك تصريحًا." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -870,7 +870,7 @@ msgstr "خطأ في قاعدة البيانات أثناء حذف مستخدم #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "" @@ -915,19 +915,20 @@ msgstr "الحساب" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "الاسم المستعار" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "كلمة السر" @@ -1051,7 +1052,7 @@ msgstr "لم يتم العثور على وسيلة API." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "نسق غير مدعوم." #. TRANS: Client error displayed requesting a deleted status. @@ -1237,25 +1238,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "ابحث عن محتويات في الإشعارات" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." @@ -1423,7 +1425,7 @@ msgid "Not a member." msgstr "جميع الأعضاء" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "تعذّر حفظ الاشتراك." @@ -1528,9 +1530,11 @@ msgstr "بإمكانك رفع أفتارك الشخصي. أقصى حجم للم #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "المستخدم بدون ملف مطابق." @@ -1588,9 +1592,10 @@ msgstr "مجموعات" msgid "No file uploaded." msgstr "لم يُرفع ملف." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "اختر منطقة مربعة من الصورة لتكون صورة أفتارك." #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1650,7 +1655,7 @@ msgstr "الخلفية" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1690,7 +1695,8 @@ msgstr "لا" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "لا تمنع هذا المستخدم" #. TRANS: Button label on the user block form. @@ -1707,9 +1713,9 @@ msgid "Yes" msgstr "نعم" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "امنع هذا المستخدم" #. TRANS: Server error displayed when blocking a user fails. @@ -1875,7 +1881,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "أكّد" @@ -1905,13 +1911,13 @@ msgstr "لم يوجد التطبيق." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "أنت لست مالك هذا التطبيق." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "" @@ -1932,12 +1938,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "لا تحذف هذا التطبيق" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "احذف هذا التطبيق" #. TRANS: Client error when trying to delete group while not logged in. @@ -1993,13 +2001,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 #, fuzzy -msgid "Do not delete this group" +msgid "Do not delete this group." msgstr "لا تحذف هذا الإشعار" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 #, fuzzy -msgid "Delete this group" +msgid "Delete this group." msgstr "احذف هذا المستخدم" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2040,12 +2048,14 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "لا تحذف هذا الإشعار" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "احذف هذا الإشعار" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2080,13 +2090,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "لا تحذف هذا الإشعار" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "احذف هذا المستخدم" #. TRANS: Message used as title for design settings for the site. @@ -2253,21 +2263,21 @@ msgid "Use defaults" msgstr "استخدم المبدئيات" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "استعد التصميمات المبدئية" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "ارجع إلى المبدئي" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "احفظ التصميم" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2299,7 +2309,7 @@ msgid "You must be logged in to edit an application." msgstr "يجب أن تكون مسجل الدخول لتعدل تطبيقا." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "لا تطبيق كهذا." @@ -2581,7 +2591,7 @@ msgid "Cannot normalize that email address." msgstr "عنوان البريد الإلكتروني المُؤكد الحالي." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "ليس عنوان بريد صالح." @@ -2656,20 +2666,23 @@ msgstr "لا عنوان بريد إلكتروني وارد." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "تعذّر تحديث سجل المستخدم." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 #, fuzzy msgid "Incoming email address removed." msgstr "لا عنوان بريد إلكتروني وارد." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 #, fuzzy msgid "New incoming email address added." msgstr "لا عنوان بريد إلكتروني وارد." @@ -2681,7 +2694,8 @@ msgstr "هذا الإشعار مفضلة مسبقًا!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "ألغِ تفضيل المفضلة" #. TRANS: Page title for first page of favorited notices. @@ -2916,12 +2930,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "لا تمنع هذا المستخدم من هذه المجموعة" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "امنع هذا المستخدم من هذه المجموعة" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3234,7 +3250,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "انشر هوية مصغّرة لعنوان بريدي الإلكتروني." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "حُفِظت التفضيلات." @@ -3628,51 +3645,51 @@ msgstr "أرسل" msgid "Save license settings" msgstr "" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "والج بالفعل." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "اسم المستخدم أو كلمة السر غير صحيحان." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "خطأ أثناء ضبط المستخدم. لست مُصرحًا على الأرجح." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "لُج" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "لُج إلى الموقع" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "تذكّرني" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "لُج تلقائيًا في المستقبل؛ هذا الخيار ليس مُعدًا للحواسيب المشتركة!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "أنسيت كلمة السر؟" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." msgstr "" "لأسباب أمنية، من فضلك أعد إدخال اسم مستخدمك وكلمة سرك قبل تغيير إعداداتك." -#: actions/login.php:292 +#: actions/login.php:281 #, fuzzy msgid "Login with your username and password." msgstr "لُج باسم مستخدم وكلمة سر" -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3875,31 +3892,31 @@ msgid "You have not registered any applications yet." msgstr "يجب أن تكون مسجل الدخول لتسجل تطبيقا." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 #, fuzzy msgid "Connected applications" msgstr "احذف هذا التطبيق" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "لست مستخدما لهذا التطبيق." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "استخدم هذا النموذج لتعدل تطبيقك." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3907,20 +3924,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "" #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "لم يُعثرعلى المستخدم." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "لم يتم العثور على وسيلة API." + #: actions/oembed.php:80 actions/shownotice.php:100 #, fuzzy msgid "Notice has no profile." @@ -3931,6 +3958,16 @@ msgstr "ليس للمستخدم ملف شخصي." msgid "%1$s's status on %2$s" msgstr "حالة %1$s في يوم %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "لم يُعثر على المستخدم المستلم." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, fuzzy, php-format @@ -4021,17 +4058,21 @@ msgstr "توكن دخول غير صحيح محدد." msgid "Login token expired." msgstr "توكن الدخول انتهى." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "صندوق %1$s الصادر - صفحة %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "صندوق %s الصادر" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "هذا صندوق بريدك الصادر، والذي يسرد الرسائل الخاصة التي أرسلتها." @@ -4057,40 +4098,45 @@ msgstr "كلمة السر القديمة" msgid "New password" msgstr "كلمة السر الجديدة" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 أحرف أو أكثر" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "نفس كلمة السر أعلاه" #: actions/passwordsettings.php:117 msgid "Change" msgstr "غيّر" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "يجب أن تكون كلمة السر 6 حروف أو أكثر." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "كلمتا السر غير متطابقتين." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "كلمة السر القديمة غير صحيحة" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "خطأ أثناء حفظ المستخدم؛ غير صالح." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "تعذّر حفظ كلمة السر الجديدة." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "حُفظت كلمة السر." @@ -4430,7 +4476,7 @@ msgid "Profile information" msgstr "معلومات الملف الشخصي" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 حرفًا إنجليزيًا أو رقمًا بدون نقاط أو مسافات" @@ -4438,7 +4484,7 @@ msgstr "1-64 حرفًا إنجليزيًا أو رقمًا بدون نقاط أ #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4446,13 +4492,13 @@ msgstr "الاسم الكامل" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "الصفحة الرئيسية" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "مسار صفحتك الرئيسية أو مدونتك أو ملفك الشخصي على موقع آخر" @@ -4460,7 +4506,7 @@ msgstr "مسار صفحتك الرئيسية أو مدونتك أو ملفك ا #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4472,28 +4518,29 @@ msgstr[4] "تكلم عن نفسك واهتمامتك في %d حرف" msgstr[5] "تكلم عن نفسك واهتمامتك في %d حرف" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "صِف نفسك واهتماماتك" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "السيرة" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "الموقع" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "مكان تواجدك، على سبيل المثال \"المدينة، الولاية (أو المنطقة)، الدولة\"" @@ -4512,8 +4559,10 @@ msgstr "الوسوم" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "سِم نفسك (حروف وأرقام و \"-\" و \".\" و \"_\")، افصلها بفاصلة (',') أو مسافة." @@ -4524,7 +4573,8 @@ msgstr "اللغة" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "اللغة المفضلة" #. TRANS: Dropdownlist label in form for profile settings. @@ -4539,14 +4589,15 @@ msgstr "ما المنطقة الزمنية التي تتواجد فيها عاد #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "اشترك تلقائيًا بأي شخص يشترك بي (يفضل أن يستخدم لغير البشر)" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4570,9 +4621,9 @@ msgstr "الاسم طويل جدا (الأقصى 255 حرفا)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "وسم غير صالح: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4809,6 +4860,12 @@ msgstr "استعد كلمة السر" msgid "Password recovery requested" msgstr "طُلبت استعادة كلمة السر" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "حُفظت كلمة السر." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4820,12 +4877,6 @@ msgstr "إجراء غير معروف" msgid "6 or more characters, and do not forget it!" msgstr "6 أحرف أو أكثر" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "نفس كلمة السر أعلاه" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4880,14 +4931,8 @@ msgstr "يجب أن تكون كلمة السر 6 محارف أو أكثر." msgid "Password and confirmation do not match." msgstr "كلمتا السر غير متطابقتين." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "تعذّر حفظ كلمة السر الجديدة." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "خطأ أثناء ضبط المستخدم." @@ -4896,98 +4941,96 @@ msgstr "خطأ أثناء ضبط المستخدم." msgid "New password successfully saved. You are now logged in." msgstr "حُفظت كلمة السر الجديدة بنجاح. أنت الآن والج." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "عذرًا، الأشخاص المدعوون وحدهم يستطيعون التسجيل." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "عذرا، رمز دعوة غير صالح." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "نجح التسجيل" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "سجّل" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "لا يُسمح بالتسجيل." -#: actions/register.php:209 +#: actions/register.php:201 #, fuzzy -msgid "You can't register if you don't agree to the license." +msgid "You cannot register if you don't agree to the license." msgstr "لا يمكنك تكرار ملاحظتك الشخصية." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "عنوان البريد الإلكتروني موجود مسبقًا." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "اسم مستخدم أو كلمة سر غير صالحة." -#: actions/register.php:351 +#: actions/register.php:340 msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 أحرف أو أكثر" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "البريد الإلكتروني" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "لا يُستخدم إلا عند التحديثات، والتعميمات، ولاستعادة كلمة السر" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "اسم أطول. يُفضَّل استخدام اسمك الحقيقي" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "مسار صفحتك الرئيسية أو مدونتك أو ملفك الشخصي على موقع آخر" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "مكان تواجدك، على سبيل المثال \"المدينة، الولاية (أو المنطقة)، الدولة\"" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "جميع الحقوق محفوظة." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5006,7 +5049,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5033,7 +5076,7 @@ msgid "User nickname" msgstr "اسم المستخدم المستعار" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +msgid "Nickname of the user you want to follow." msgstr "" #: actions/remotesubscribe.php:132 @@ -5041,7 +5084,7 @@ msgid "Profile URL" msgstr "مسار الملف الشخصي" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5051,8 +5094,9 @@ msgid "Subscribe" msgstr "اشترك" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" -msgstr "" +#, fuzzy +msgid "Invalid profile URL (bad format)." +msgstr "حجم غير صالح." #: actions/remotesubscribe.php:167 msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." @@ -5243,7 +5287,7 @@ msgstr "لا يمكنك سحب أدوار المستخدمين على هذا ا msgid "User doesn't have this role." msgstr "ليس للمستخدم هذا الدور." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "ستاتس نت" @@ -5288,95 +5332,95 @@ msgstr "مكّن تنقيح مُخرجات الجلسة." msgid "Save site settings" msgstr "اذف إعدادت الموقع" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "يجب أن تكون مسجل الدخول لرؤية تطبيق." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 #, fuzzy msgid "Application profile" msgstr "معلومات التطبيق" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "أيقونة" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "الاسم" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "المنظمة" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "الوصف" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "إحصاءات" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 #, fuzzy msgid "Application actions" msgstr "معلومات التطبيق" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "احذف" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "معلومات التطبيق" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "اسمح بالمسار" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "أمتأكد من أنك تريد إعادة ضبط مفتاح المستهلك وكلمة سره؟" @@ -5466,16 +5510,18 @@ msgid "Group profile" msgstr "ملف المجموعة الشخصي" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "مسار" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "ملاحظة" @@ -5622,7 +5668,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s، الصفحة %2$d" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5866,7 +5912,8 @@ msgstr "نص إشعار عام للموقع (255 حرف كحد أقصى؛ يسم #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "احفظ إشعار الموقع" #. TRANS: Title for SMS settings. @@ -5926,7 +5973,8 @@ msgstr "رقم هاتف SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "رقم الهاتف بدون شرطات أو مسافات مع رمز المنطقة" #. TRANS: Form legend for SMS preferences form. @@ -6256,8 +6304,9 @@ msgstr "الوسوم" msgid "User profile" msgstr "ملف المستخدم الشخصي" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "صورة" @@ -6274,6 +6323,11 @@ msgid "" msgstr "" "سِم نفسك (حروف وأرقام و \"-\" و \".\" و \"_\")، افصلها بفاصلة (',') أو مسافة." +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "وسم غير صالح: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6309,7 +6363,7 @@ msgstr "لا طلب استيثاق." msgid "Unsubscribed" msgstr "غير مشترك" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6341,7 +6395,7 @@ msgstr "رسالة ترحيب غير صالحة. أقصى طول هو 255 حرف #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" #. TRANS: Link description in user account settings menu. @@ -6402,106 +6456,146 @@ msgstr "اسمح للمستخدمين بدعوة مستخدمين جدد." #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "احفظ إعدادات المستخدم" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 #, fuzzy msgid "Authorize subscription" msgstr "جميع الاشتراكات" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "يُرجى التحقق من هذه التفاصيل للتأكد من أنك تريد الاستماع لإشعارات هذا " "المستخدم. إذا لم تطلب للتو الاستماع لإشعارات شخص ما فانقر \"ارفض\"." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "الرخصة" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "اقبل" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "اشترك بهذا المستخدم" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "ارفض" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "ارفض هذا الاشتراك" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "لا طلب استيثاق!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 #, fuzzy msgid "Subscription authorized" msgstr "رُفض الاشتراك" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "رُفض الاشتراك" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " "subscription." msgstr "" -#: actions/userauthorization.php:303 +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 #, php-format -msgid "Listener URI ‘%s’ not found here." +msgid "Listener URI \"%s\" not found here." msgstr "" -#: actions/userauthorization.php:308 +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." +msgstr "المسار المصدر طويل جدًا." + +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 #, php-format -msgid "Listenee URI ‘%s’ is too long." +msgid "Listenee URI \"%s\" is a local user." msgstr "" -#: actions/userauthorization.php:314 +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 #, php-format -msgid "Listenee URI ‘%s’ is a local user." +msgid "Profile URL \"%s\" is for a local user." msgstr "" -#: actions/userauthorization.php:329 +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 #, php-format -msgid "Profile URL ‘%s’ is for a local user." +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" -#: actions/userauthorization.php:345 +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 #, fuzzy, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "Avatar URL \"%s\" is not valid." msgstr "مسار المصدر ليس صحيحا." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "تعذر قراءة رابط الأفتار ‘%s’." -#: actions/userauthorization.php:355 +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 #, php-format -msgid "Wrong image type for avatar URL ‘%s’." +msgid "Wrong image type for avatar URL \"%s\"." msgstr "" #. TRANS: Page title for profile design page. @@ -7720,6 +7814,11 @@ msgstr "تغيير كلمة السر غير مسموح به" msgid "Block" msgstr "امنع" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "امنع هذا المستخدم" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8198,6 +8297,11 @@ msgstr "تطبيقات OAuth" msgid "Database error" msgstr "خطأ قاعدة بيانات" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "احذف هذا المستخدم" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8234,6 +8338,21 @@ msgstr "تغيير الألوان" msgid "Use defaults" msgstr "استخدم المبدئيات" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "استعد التصميمات المبدئية" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "ارجع إلى المبدئي" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "احفظ التصميم" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8341,7 +8460,6 @@ msgid "Grant this user the \"%s\" role" msgstr "" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 حرفًا إنجليزيًا أو رقمًا بدون نقاط أو مسافات" @@ -9060,6 +9178,10 @@ msgstr "رُد على هذا الإشعار" msgid "Reply" msgstr "رُد" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "احذف هذا الإشعار" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "الإشعار مكرر" @@ -9342,6 +9464,10 @@ msgstr "ادعُ" msgid "Invite friends and colleagues to join you on %s" msgstr "ادعُ أصدقائك وزملائك للانضمام إليك في %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "اشترك بهذا المستخدم" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9637,3 +9763,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6 أحرف أو أكثر" + +#~ msgid "Same as password above" +#~ msgstr "نفس كلمة السر أعلاه" + +#~ msgid "Can't save new password." +#~ msgstr "تعذّر حفظ كلمة السر الجديدة." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "مسار صفحتك الرئيسية أو مدونتك أو ملفك الشخصي على موقع آخر" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 65fb7a4bb2..0786c3d391 100644 --- a/locale/arz/LC_MESSAGES/statusnet.po +++ b/locale/arz/LC_MESSAGES/statusnet.po @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:05:15+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:00+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.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\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: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -159,7 +159,7 @@ msgstr "لا وسم كهذا." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -520,7 +520,7 @@ msgstr "لم يُعثر على المستخدم المستلم." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" #. TRANS: Client error displayed trying to direct message self (403). @@ -607,7 +607,7 @@ msgstr "تعذّر إيجاد المستخدم الهدف." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "" @@ -617,7 +617,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "ليس اسمًا مستعارًا صحيحًا." @@ -630,7 +630,7 @@ msgstr "ليس اسمًا مستعارًا صحيحًا." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "الصفحه الرئيسيه ليست عنونًا صالحًا." @@ -640,7 +640,7 @@ msgstr "الصفحه الرئيسيه ليست عنونًا صالحًا." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" @@ -673,7 +673,7 @@ msgstr[5] "المنظمه طويله جدا (اكتر حاجه %d رمز)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "المنظمه طويله جدا (اكتر حاجه 255 رمز)." @@ -840,15 +840,15 @@ msgstr "لا تملك تصريحًا." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -880,7 +880,7 @@ msgstr "خطأ قاعده البيانات أثناء إدخال المستخد #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "" @@ -926,19 +926,20 @@ msgstr "الحساب" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "الاسم المستعار" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "كلمه السر" @@ -1064,7 +1065,7 @@ msgstr "الـ API method مش موجوده." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "نسق غير مدعوم." #. TRANS: Client error displayed requesting a deleted status. @@ -1251,25 +1252,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "ابحث عن محتويات فى الإشعارات" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." @@ -1439,7 +1441,7 @@ msgid "Not a member." msgstr "جميع الأعضاء" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "تعذّر حفظ الاشتراك." @@ -1544,9 +1546,11 @@ msgstr "تستطيع رفع صورتك الشخصيه. أقصى حجم للمل #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "يوزر من-غير پروفايل زيّه." @@ -1605,9 +1609,9 @@ msgstr "مجموعات" msgid "No file uploaded." msgstr "لا ملف شخصى مُحدّد." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +msgid "Pick a square area of the image to be your avatar." msgstr "" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1667,7 +1671,7 @@ msgstr "الخلفية" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1705,7 +1709,8 @@ msgstr "ملاحظة" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "لا تمنع هذا المستخدم" #. TRANS: Button label on the user block form. @@ -1723,9 +1728,9 @@ msgid "Yes" msgstr "نعم" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "امنع هذا المستخدم" #. TRANS: Server error displayed when blocking a user fails. @@ -1892,7 +1897,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "أكّد" @@ -1923,13 +1928,13 @@ msgstr "لم يوجد رمز التأكيد." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "انت مش بتملك الapplication دى." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "" @@ -1951,13 +1956,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 #, fuzzy -msgid "Do not delete this application" +msgid "Do not delete this application." msgstr "لا تحذف هذا الإشعار" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 #, fuzzy -msgid "Delete this application" +msgid "Delete this application." msgstr "احذف هذا الإشعار" #. TRANS: Client error when trying to delete group while not logged in. @@ -2013,13 +2018,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 #, fuzzy -msgid "Do not delete this group" +msgid "Do not delete this group." msgstr "لا تحذف هذا الإشعار" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 #, fuzzy -msgid "Delete this group" +msgid "Delete this group." msgstr "احذف هذا المستخدم" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2060,12 +2065,14 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "لا تحذف هذا الإشعار" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "احذف هذا الإشعار" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2100,13 +2107,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "لا تحذف هذا الإشعار" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "احذف هذا المستخدم" #. TRANS: Message used as title for design settings for the site. @@ -2274,21 +2281,21 @@ msgid "Use defaults" msgstr "استخدم المبدئيات" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "استعد التصميمات المبدئية" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "ارجع إلى المبدئي" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "احفظ التصميم" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2321,7 +2328,7 @@ msgid "You must be logged in to edit an application." msgstr "لازم يكون متسجل دخولك علشان تعدّل application." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "ما فيش application زى كده." @@ -2609,7 +2616,7 @@ msgid "Cannot normalize that email address." msgstr "عنوان البريد الإلكترونى المُؤكد الحالى." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "ليس عنوان بريد صالح." @@ -2686,20 +2693,23 @@ msgstr "لا عنوان بريد إلكترونى." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "تعذّر تحديث المستخدم." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 #, fuzzy msgid "Incoming email address removed." msgstr "لا عنوان بريد إلكترونى." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 #, fuzzy msgid "New incoming email address added." msgstr "لا عنوان بريد إلكترونى." @@ -2711,7 +2721,8 @@ msgstr "هذا الإشعار مفضله مسبقًا!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "ألغِ تفضيل المفضلة" #. TRANS: Page title for first page of favorited notices. @@ -2950,12 +2961,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "لا تمنع هذا المستخدم من هذه المجموعة" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "امنع هذا المستخدم من هذه المجموعة" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3263,7 +3276,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "هذا ليس عنوان بريدك الإلكترونى." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "حُفِظت التفضيلات." @@ -3662,50 +3676,50 @@ msgstr "أرسل" msgid "Save license settings" msgstr "" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "والج بالفعل." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "اسم المستخدم أو كلمه السر غير صحيحان." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "خطأ أثناء ضبط المستخدم. لست مُصرحًا على الأرجح." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "لُج" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "لُج إلى الموقع" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "تذكّرني" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "أنسيت كلمه السر؟" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." msgstr "" -#: actions/login.php:292 +#: actions/login.php:281 #, fuzzy msgid "Login with your username and password." msgstr "اسم المستخدم أو كلمه السر غير صحيحان." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3908,31 +3922,31 @@ msgid "You have not registered any applications yet." msgstr "لازم تكون مسجل دخوللك علشان تسجل application." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 #, fuzzy msgid "Connected applications" msgstr "مش ممكن إنشاء الapplication." #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "انت مش يوزر للapplication دى." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "استعمل الفورمه دى علشان تعدّل الapplication بتاعتك." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3940,20 +3954,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "" #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "الـ API method مش موجوده." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "الـ API method مش موجوده." + #: actions/oembed.php:80 actions/shownotice.php:100 #, fuzzy msgid "Notice has no profile." @@ -3964,6 +3988,16 @@ msgstr "ليس للمستخدم ملف شخصى." msgid "%1$s's status on %2$s" msgstr "%1$s ساب جروپ %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "لم يُعثر على المستخدم المستلم." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, fuzzy, php-format @@ -4054,17 +4088,21 @@ msgstr "امارة تسجيل الدخول اللى اتحطت مش موجوده msgid "Login token expired." msgstr "تاريخ صلاحية الاماره خلص." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, fuzzy, php-format msgid "Outbox for %s" msgstr "صندوق الصادر" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" @@ -4090,41 +4128,45 @@ msgstr "كلمه السر القديمة" msgid "New password" msgstr "كلمه سر جديدة" -#: actions/passwordsettings.php:109 +#: actions/passwordsettings.php:109 actions/register.php:423 #, fuzzy -msgid "6 or more characters" +msgid "6 or more characters." msgstr "6 حروف أو أكثر. مطلوب." -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "نفس كلمه السر أعلاه" #: actions/passwordsettings.php:117 msgid "Change" msgstr "غيّر" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "يجب أن تكون كلمه السر 6 حروف أو أكثر." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "كلمتا السر غير متطابقتين." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "كلمه السر القديمه غير صحيحة" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "خطأ أثناء حفظ المستخدم؛ غير صالح." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "تعذّر حفظ كلمه السر الجديده." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "حُفظت كلمه السر." @@ -4462,14 +4504,14 @@ msgid "Profile information" msgstr "معلومات الملف الشخصي" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4477,20 +4519,20 @@ msgstr "الاسم الكامل" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "الصفحه الرئيسية" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site." msgstr "" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4502,28 +4544,29 @@ msgstr[4] "صِف نفسك واهتماماتك" msgstr[5] "صِف نفسك واهتماماتك" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "صِف نفسك واهتماماتك" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "السيرة" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "الموقع" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" @@ -4543,7 +4586,8 @@ msgstr "الوسوم" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" #. TRANS: Dropdownlist label in form for profile settings. @@ -4553,7 +4597,8 @@ msgstr "اللغة" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "اللغه المفضلة" #. TRANS: Dropdownlist label in form for profile settings. @@ -4570,13 +4615,13 @@ msgstr "ما المنطقه الزمنيه التى تتواجد فيها عاد #: actions/profilesettings.php:189 #, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "أشرك المستخدمين الجدد بهذا المستخدم تلقائيًا." #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4600,9 +4645,9 @@ msgstr "الاسم طويل جدا (اكتر حاجه 255 رمز)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "وسم غير صالح: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4839,6 +4884,12 @@ msgstr "استعد كلمه السر" msgid "Password recovery requested" msgstr "طُلبت استعاده كلمه السر" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "حُفظت كلمه السر." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4850,12 +4901,6 @@ msgstr "إجراء غير معروف" msgid "6 or more characters, and do not forget it!" msgstr "6 حروف أو أكثر. مطلوب." -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "نفس كلمه السر أعلاه" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4911,14 +4956,8 @@ msgstr "يجب أن تكون كلمه السر 6 محارف أو أكثر." msgid "Password and confirmation do not match." msgstr "كلمتا السر غير متطابقتين." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "تعذّر حفظ كلمه السر الجديده." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "خطأ أثناء ضبط المستخدم." @@ -4927,98 +4966,93 @@ msgstr "خطأ أثناء ضبط المستخدم." msgid "New password successfully saved. You are now logged in." msgstr "" -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "عذرًا، الأشخاص المدعوون وحدهم يستطيعون التسجيل." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "عذرا، رمز دعوه غير صالح." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "نجح التسجيل" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "سجّل" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "لا يُسمح بالتسجيل." -#: actions/register.php:209 +#: actions/register.php:201 #, fuzzy -msgid "You can't register if you don't agree to the license." +msgid "You cannot register if you don't agree to the license." msgstr "ما ينفعش تكرر الملاحظه بتاعتك." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "عنوان البريد الإلكترونى موجود مسبقًا." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "اسم مستخدم أو كلمه سر غير صالحه." -#: actions/register.php:351 +#: actions/register.php:340 msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 حروف أو أكثر. مطلوب." - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "البريد الإلكتروني" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +msgid "Used only for updates, announcements, and password recovery." msgstr "" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +msgid "Longer name, preferably your \"real\" name." msgstr "" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" +#: actions/register.php:471 +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5037,7 +5071,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5064,7 +5098,7 @@ msgid "User nickname" msgstr "اسم المستخدم المستعار" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +msgid "Nickname of the user you want to follow." msgstr "" #: actions/remotesubscribe.php:132 @@ -5072,7 +5106,7 @@ msgid "Profile URL" msgstr "مسار الملف الشخصي" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5082,8 +5116,9 @@ msgid "Subscribe" msgstr "اشترك" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" -msgstr "" +#, fuzzy +msgid "Invalid profile URL (bad format)." +msgstr "حجم غير صالح." #: actions/remotesubscribe.php:167 msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." @@ -5276,7 +5311,7 @@ msgstr "لا يمكنك إسكات المستخدمين على هذا الموق msgid "User doesn't have this role." msgstr "يوزر من-غير پروفايل زيّه." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5321,95 +5356,95 @@ msgstr "مكّن تنقيح مُخرجات الجلسه." msgid "Save site settings" msgstr "اذف إعدادت الموقع" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "لازم تكون مسجل دخولك علشان تشوف اى application." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "الاسم" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "المنظمه" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "الوصف" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "إحصاءات" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 #, fuzzy msgid "Application actions" msgstr "OAuth applications" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "احذف" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 #, fuzzy msgid "Application info" msgstr "OAuth applications" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "اسمح للURL" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 #, fuzzy msgid "Are you sure you want to reset your consumer key and secret?" msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" @@ -5500,16 +5535,18 @@ msgid "Group profile" msgstr "ملف المجموعه الشخصي" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "مسار" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "ملاحظة" @@ -5654,7 +5691,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s و الصحاب, صفحه %2$d" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5900,7 +5937,7 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 #, fuzzy -msgid "Save site notice" +msgid "Save site notice." msgstr "إشعار الموقع" #. TRANS: Title for SMS settings. @@ -5962,7 +5999,7 @@ msgstr "نمرة تليفون الـSMS" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +msgid "Phone number, no punctuation or spaces, with area code." msgstr "" #. TRANS: Form legend for SMS preferences form. @@ -6292,8 +6329,9 @@ msgstr "الوسوم" msgid "User profile" msgstr "ملف المستخدم الشخصي" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "صورة" @@ -6308,6 +6346,11 @@ msgid "" "separated" msgstr "" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "وسم غير صالح: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6344,7 +6387,7 @@ msgstr "ما فيش طلب تسجيل دخول مطلوب." msgid "Unsubscribed" msgstr "ألغِ الاشتراك" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6377,7 +6420,7 @@ msgstr "رساله ترحيب غير صالحه. أقصى طول هو 255 حرف #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" #. TRANS: Link description in user account settings menu. @@ -6438,104 +6481,143 @@ msgstr "" #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" -msgstr "" +#, fuzzy +msgid "Save user settings." +msgstr "اذف إعدادت الموقع" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 #, fuzzy msgid "Authorize subscription" msgstr "جميع الاشتراكات" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "الرخصة" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "اقبل" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "اشترك بهذا المستخدم" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "ارفض" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "ارفض هذا الاشتراك" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "لا طلب استيثاق!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 #, fuzzy msgid "Subscription authorized" msgstr "رُفض الاشتراك" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "رُفض الاشتراك" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " "subscription." msgstr "" -#: actions/userauthorization.php:303 +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 #, php-format -msgid "Listener URI ‘%s’ not found here." +msgid "Listener URI \"%s\" not found here." msgstr "" -#: actions/userauthorization.php:308 +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." +msgstr "الSource URL مش مظبوط." + +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 #, php-format -msgid "Listenee URI ‘%s’ is too long." +msgid "Listenee URI \"%s\" is a local user." msgstr "" -#: actions/userauthorization.php:314 +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 #, php-format -msgid "Listenee URI ‘%s’ is a local user." +msgid "Profile URL \"%s\" is for a local user." msgstr "" -#: actions/userauthorization.php:329 +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 #, php-format -msgid "Profile URL ‘%s’ is for a local user." +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" -#: actions/userauthorization.php:345 +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 #, fuzzy, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "Avatar URL \"%s\" is not valid." msgstr "الSource URL مش مظبوط." -#: actions/userauthorization.php:350 +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 #, php-format -msgid "Can’t read avatar URL ‘%s’." +msgid "Cannot read avatar URL \"%s\"." msgstr "" -#: actions/userauthorization.php:355 +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 #, php-format -msgid "Wrong image type for avatar URL ‘%s’." +msgid "Wrong image type for avatar URL \"%s\"." msgstr "" #. TRANS: Page title for profile design page. @@ -7773,6 +7855,11 @@ msgstr "تغيير الپاسوورد مش مسموح" msgid "Block" msgstr "امنع" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "امنع هذا المستخدم" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8216,6 +8303,11 @@ msgstr "OAuth applications" msgid "Database error" msgstr "خطأ قاعده بيانات" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "احذف هذا المستخدم" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8252,6 +8344,21 @@ msgstr "تغيير الألوان" msgid "Use defaults" msgstr "استخدم المبدئيات" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "استعد التصميمات المبدئية" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "ارجع إلى المبدئي" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "احفظ التصميم" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -9056,6 +9163,10 @@ msgstr "رُد على هذا الإشعار" msgid "Reply" msgstr "رُد" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "احذف هذا الإشعار" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "الإشعار مكرر" @@ -9339,6 +9450,10 @@ msgstr "ادعُ" msgid "Invite friends and colleagues to join you on %s" msgstr "" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "اشترك بهذا المستخدم" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9636,3 +9751,13 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "6 or more characters" +#~ msgstr "6 حروف أو أكثر. مطلوب." + +#~ msgid "Same as password above" +#~ msgstr "نفس كلمه السر أعلاه" + +#~ msgid "Can't save new password." +#~ msgstr "تعذّر حفظ كلمه السر الجديده." diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 3ea62a4545..3bd053bcaf 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:05:18+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:01+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -152,7 +152,7 @@ msgstr "Няма такака страница." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -504,7 +504,8 @@ msgstr "Получателят не е открит" #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" "Не може да изпращате преки съобщения до хора, които не са в списъка ви с " "приятели." @@ -593,7 +594,7 @@ msgstr "Целевият потребител не беше открит." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Опитайте друг псевдоним, този вече е зает." @@ -603,7 +604,7 @@ msgstr "Опитайте друг псевдоним, този вече е за #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Неправилен псевдоним." @@ -616,7 +617,7 @@ msgstr "Неправилен псевдоним." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "Адресът на личната страница не е правилен URL." @@ -626,7 +627,7 @@ msgstr "Адресът на личната страница не е правил #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Пълното име е твърде дълго (макс. 255 знака)" @@ -655,7 +656,7 @@ msgstr[1] "Описанието е твърде дълго (до %d символ #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Името на местоположението е твърде дълго (макс. 255 знака)." @@ -816,15 +817,15 @@ msgstr "Не сте абонирани за никого." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!" @@ -856,7 +857,7 @@ msgstr "Грешка в базата от данни — отговор при #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Неочаквано изпращане на форма." @@ -902,19 +903,20 @@ msgstr "Сметка" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Псевдоним" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Парола" @@ -1037,7 +1039,7 @@ msgstr "Не е открит методът в API." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "Неподдържан формат." #. TRANS: Client error displayed requesting a deleted status. @@ -1215,25 +1217,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Търсене в съдържанието на бележките" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." @@ -1400,7 +1403,7 @@ msgid "Not a member." msgstr "Всички членове" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Грешка при добавяне на нов абонамент." @@ -1506,9 +1509,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Потребителят няма профил." @@ -1566,9 +1571,10 @@ msgstr "Изрязване" msgid "No file uploaded." msgstr "Няма качен файл." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Изберете квадратна област от изображението за аватар" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1628,7 +1634,7 @@ msgstr "Фон" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1666,7 +1672,8 @@ msgstr "Не" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Да не се блокира този потребител" #. TRANS: Button label on the user block form. @@ -1683,9 +1690,9 @@ msgid "Yes" msgstr "Да" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Блокиране на потребителя" #. TRANS: Server error displayed when blocking a user fails. @@ -1851,7 +1858,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Потвърждаване" @@ -1881,13 +1888,13 @@ msgstr "Приложението не е открито." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Не сте собственик на това приложение." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Имаше проблем със сесията ви в сайта." @@ -1908,12 +1915,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Да не се изтрива приложението" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Изтриване на това приложение" #. TRANS: Client error when trying to delete group while not logged in. @@ -1969,13 +1978,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 #, fuzzy -msgid "Do not delete this group" +msgid "Do not delete this group." msgstr "Да не се изтрива бележката" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 #, fuzzy -msgid "Delete this group" +msgid "Delete this group." msgstr "Изтриване на този потребител" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2016,12 +2025,14 @@ msgstr "Наистина ли искате да изтриете тази бел #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Да не се изтрива бележката" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Изтриване на бележката" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2056,13 +2067,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "Да не се изтрива бележката" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Изтриване на този потребител" #. TRANS: Message used as title for design settings for the site. @@ -2236,22 +2247,20 @@ msgid "Use defaults" msgstr "" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" -msgstr "" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." +msgstr "Грешка при записване настройките за Twitter" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +msgid "Reset back to default." msgstr "" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 +#: actions/designadminpanel.php:736 #, fuzzy -msgid "Save design" +msgid "Save design." msgstr "Запазване настройките на сайта" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2284,7 +2293,7 @@ msgid "You must be logged in to edit an application." msgstr "За да редактирате приложение, трябва да сте влезли." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Няма такова приложение." @@ -2575,7 +2584,7 @@ msgid "Cannot normalize that email address." msgstr "Грешка при нормализиране адреса на е-пощата" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Неправилен адрес на е-поща." @@ -2653,19 +2662,22 @@ msgstr "Няма входящ адрес на е-поща." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Грешка при обновяване записа на потребител." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Входящият адрес на е-поща е премахнат." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Добавен е нов входящ адрес на е-поща." @@ -2676,7 +2688,8 @@ msgstr "Тази бележка вече е отбелязана като люб #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Добавяне към любимите" #. TRANS: Page title for first page of favorited notices. @@ -2914,12 +2927,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Да не се блокира този потребител" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Разблокиране на потребителя от групата" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3241,7 +3256,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Публикуване на MicroID за адреса в Jabber/GTalk." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Настройките са запазени." @@ -3657,40 +3673,40 @@ msgstr "Запазване" msgid "Save license settings" msgstr "" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Вече сте влезли." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Грешно име или парола." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 #, fuzzy msgid "Error setting user. You are probably not authorized." msgstr "Забранено." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Вход" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Вход в сайта" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Запомни ме" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "Автоматично влизане занапред. Да не се ползва на общи компютри!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Загубена или забравена парола" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3698,12 +3714,12 @@ msgstr "" "За по-голяма сигурност, моля въведете отново потребителското си име и парола " "при промяна на настройките." -#: actions/login.php:292 +#: actions/login.php:281 #, fuzzy msgid "Login with your username and password." msgstr "Вход с име и парола" -#: actions/login.php:295 +#: actions/login.php:284 #, fuzzy, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3915,31 +3931,31 @@ msgid "You have not registered any applications yet." msgstr "Не сте собственик на това приложение." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 #, fuzzy msgid "Connected applications" msgstr "Изтриване на приложението" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Не сте собственик на това приложение." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "Използвайте тази бланка за създаване на нова група." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3947,20 +3963,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "" #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "Не е открит методът в API." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "Не е открит методът в API." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Потребителят няма профил." @@ -3970,6 +3996,16 @@ msgstr "Потребителят няма профил." msgid "%1$s's status on %2$s" msgstr "Бележка на %1$s от %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Получателят не е открит" + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, fuzzy, php-format @@ -4062,17 +4098,21 @@ msgstr "Не е указана бележка." msgid "Login token expired." msgstr "Вход в сайта" -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "%1$s, страница %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Изходяща кутия за %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "Това е изходящата ви кутия с лични съобщения до други потребители." @@ -4099,40 +4139,45 @@ msgstr "Стара парола" msgid "New password" msgstr "Нова парола" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 или повече знака" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "Също като паролата по-горе" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Промяна" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Паролата трябва да е 6 или повече знака." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Паролите не съвпадат." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Грешна стара парола" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Грешка при запазване на потребител — невалидност." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Грешка при запазване на новата парола." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Паролата е записана." @@ -4468,7 +4513,7 @@ msgid "Profile information" msgstr "Данни на профила" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "От 1 до 64 малки букви или цифри, без пунктоация и интервали" @@ -4476,7 +4521,7 @@ msgstr "От 1 до 64 малки букви или цифри, без пунк #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4484,13 +4529,13 @@ msgstr "Пълно име" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Лична страница" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "Адрес на личната ви страница, блог или профил в друг сайт" @@ -4498,7 +4543,7 @@ msgstr "Адрес на личната ви страница, блог или п #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4506,28 +4551,29 @@ msgstr[0] "Опишете себе си и интересите си в до %d msgstr[1] "Опишете себе си и интересите си в до %d букви" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Опишете себе си и интересите си" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "За мен" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Местоположение" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Къде се намирате (град, община, държава и т.н.)" @@ -4547,7 +4593,8 @@ msgstr "Етикети" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" #. TRANS: Dropdownlist label in form for profile settings. @@ -4557,7 +4604,8 @@ msgstr "Език" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Предпочитан език" #. TRANS: Dropdownlist label in form for profile settings. @@ -4572,8 +4620,9 @@ msgstr "В кой часови пояс сте обикновено?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Автоматично абониране за всеки, който се абонира за мен (подходящо за " "ботове)." @@ -4581,7 +4630,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4601,9 +4650,9 @@ msgstr "Името на езика е твърде дълго (може да е #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Неправилен етикет: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4836,6 +4885,12 @@ msgstr "Възстановяване на паролата" msgid "Password recovery requested" msgstr "Поискано е възстановяване на парола" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Паролата е записана." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4847,12 +4902,6 @@ msgstr "Непознато действие" msgid "6 or more characters, and do not forget it!" msgstr "6 или повече знака. И не ги забравяйте!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "Също като паролата по-горе" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4906,14 +4955,8 @@ msgstr "Паролата трябва да е от поне 6 знака." msgid "Password and confirmation do not match." msgstr "Паролата и потвърждението й не съвпадат." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Грешка при запазване на новата парола." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Грешка в настройките на потребителя." @@ -4922,98 +4965,97 @@ msgstr "Грешка в настройките на потребителя." msgid "New password successfully saved. You are now logged in." msgstr "Новата парола е запазена. Влязохте успешно." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "" -#: actions/register.php:99 +#: actions/register.php:94 #, fuzzy msgid "Sorry, invalid invitation code." msgstr "Грешка в кода за потвърждение." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Записването е успешно." -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Регистриране" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Записването не е позволено." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Не можете да се регистрате, ако не сте съгласни с лиценза." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Адресът на е-поща вече се използва." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Неправилно име или парола." -#: actions/register.php:351 +#: actions/register.php:340 msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 или повече знака" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Е-поща" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "Използва се само за промени, обяви или възстановяване на паролата" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "По-дълго име, за предпочитане \"истинското\" ви име." -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "Адрес на личната ви страница, блог или профил в друг сайт" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Къде се намирате (град, община, държава и т.н.)" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Всички права запазени." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, fuzzy, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5046,7 +5088,7 @@ msgstr "" "Благодарим, че се включихте в сайта и дано ползването на услугата ви носи " "само приятни мигове!" -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5079,7 +5121,8 @@ msgid "User nickname" msgstr "Потребителски псевдоним" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Псевдоним на потребител, когото искате да следите" #: actions/remotesubscribe.php:132 @@ -5087,7 +5130,8 @@ msgid "Profile URL" msgstr "Адрес на профила" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "Адрес на профила ви в друга, съвместима услуга за микроблогване" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5097,7 +5141,8 @@ msgid "Subscribe" msgstr "Абониране" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "Неправилен адрес на профил (грешен формат)" #: actions/remotesubscribe.php:167 @@ -5292,7 +5337,7 @@ msgstr "Не можете да заглушавате потребители н msgid "User doesn't have this role." msgstr "Потребител без съответстващ профил" -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5334,95 +5379,95 @@ msgstr "" msgid "Save site settings" msgstr "Запазване настройките на сайта" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "За прегледате приложение, трябва да сте влезли." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Профил на приложението" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Икона" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Име" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Организация" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Описание" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Статистики" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 #, fuzzy msgid "Application actions" msgstr "Данни за приложението" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Изтриване" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Данни за приложението" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 #, fuzzy msgid "Authorize URL" msgstr "Автор" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 #, fuzzy msgid "Are you sure you want to reset your consumer key and secret?" msgstr "Наистина ли искате да изтриете тази бележка?" @@ -5508,16 +5553,18 @@ msgid "Group profile" msgstr "Профил на групата" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Бележка" @@ -5656,7 +5703,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s, страница %2$d" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5892,7 +5939,8 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Запазване настройките на сайта" #. TRANS: Title for SMS settings. @@ -5952,7 +6000,8 @@ msgstr "Телефонен номер за SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Телефонен номер — с код, без пунктоация и без интервали." #. TRANS: Form legend for SMS preferences form. @@ -6285,8 +6334,9 @@ msgstr "Етикети" msgid "User profile" msgstr "Потребителски профил" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Снимка" @@ -6302,6 +6352,11 @@ msgid "" "separated" msgstr "" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Неправилен етикет: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6336,7 +6391,7 @@ msgstr "Не е открит профил с такъв идентификато msgid "Unsubscribed" msgstr "Отписване" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6367,7 +6422,7 @@ msgstr "" #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" #. TRANS: Link description in user account settings menu. @@ -6434,56 +6489,70 @@ msgstr "" #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" -msgstr "" +#, fuzzy +msgid "Save user settings." +msgstr "Запазване настройките на сайта" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Одобряване на абонамента" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Проверете тези детайли и се уверете, че искате да се абонирате за бележките " "на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Лиценз" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Приемане" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Абониране за този потребител" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Охвърляне" -#: actions/userauthorization.php:220 +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 #, fuzzy -msgid "Reject this subscription" +msgid "Reject this subscription." msgstr "Абонаменти на %s" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Няма заявка за одобрение." -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Абонаментът е одобрен" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -6493,11 +6562,12 @@ msgstr "" "Абонаментът е одобрен, но не е зададен callback URL. За да завършите " "одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Абонаментът е отказан" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -6507,39 +6577,62 @@ msgstr "" "Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно " "абонамента, проверете инструкциите на сайта." -#: actions/userauthorization.php:303 +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 #, php-format -msgid "Listener URI ‘%s’ not found here." +msgid "Listener URI \"%s\" not found here." msgstr "" -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." +msgstr "Изходният адрес е твърде дълъг." -#: actions/userauthorization.php:314 +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 #, php-format -msgid "Listenee URI ‘%s’ is a local user." +msgid "Listenee URI \"%s\" is a local user." msgstr "" -#: actions/userauthorization.php:329 +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 #, php-format -msgid "Profile URL ‘%s’ is for a local user." +msgid "Profile URL \"%s\" is for a local user." msgstr "" -#: actions/userauthorization.php:345 +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 #, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" -#: actions/userauthorization.php:350 +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 #, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." +msgid "Avatar URL \"%s\" is not valid." +msgstr "Адресът на личната страница не е правилен URL." + +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Грешка при четене адреса на аватара '%s'" -#: actions/userauthorization.php:355 +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 #, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Грешен вид изображение за '%s'" #. TRANS: Page title for profile design page. @@ -7763,6 +7856,11 @@ msgstr "Паролата е записана." msgid "Block" msgstr "Блокиране" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Блокиране на потребителя" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8191,6 +8289,11 @@ msgstr "Изтриване на приложението" msgid "Database error" msgstr "Грешка в базата от данни" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Изтриване на този потребител" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8229,6 +8332,22 @@ msgstr "Смяна на цветовете" msgid "Use defaults" msgstr "" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +#, fuzzy +msgid "Save design" +msgstr "Запазване настройките на сайта" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8337,7 +8456,6 @@ msgid "Grant this user the \"%s\" role" msgstr "" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "От 1 до 64 малки букви или цифри, без пунктоация и интервали" @@ -9018,6 +9136,10 @@ msgstr "Отговаряне на тази бележка" msgid "Reply" msgstr "Отговор" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Изтриване на бележката" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Бележката е повторена." @@ -9302,6 +9424,10 @@ msgstr "Покани" msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете приятели и колеги да се присъединят към вас в %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Абониране за този потребител" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9579,3 +9705,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6 или повече знака" + +#~ msgid "Same as password above" +#~ msgstr "Също като паролата по-горе" + +#~ msgid "Can't save new password." +#~ msgstr "Грешка при запазване на новата парола." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "Адрес на личната ви страница, блог или профил в друг сайт" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 307400d8ca..eb56630387 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:05:20+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:03+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -155,7 +155,7 @@ msgstr "N'eus ket eus ar bajenn-se." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -511,7 +511,8 @@ msgstr "N'eo ket bet kavet ar resever." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" "Ne c'helloc'h ket kas kemennadennoù personel d'an implijerien n'int ket ho " "mignoned." @@ -599,7 +600,7 @@ msgstr "Dibosupl eo kavout an implijer pal." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Implijet eo dija al lesanv-se. Klaskit unan all." @@ -609,7 +610,7 @@ msgstr "Implijet eo dija al lesanv-se. Klaskit unan all." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "N'eo ket ul lesanv mat." @@ -622,7 +623,7 @@ msgstr "N'eo ket ul lesanv mat." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "N'eo ket chomlec'h al lec'hienn personel un URL reizh." @@ -632,7 +633,7 @@ msgstr "N'eo ket chomlec'h al lec'hienn personel un URL reizh." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "Re hir eo an anv klok (255 arouezenn d'ar muiañ)." @@ -660,7 +661,7 @@ msgstr[1] "Re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "Re hir eo al lec'hiadur (255 arouezenn d'ar muiañ)." @@ -816,15 +817,15 @@ msgstr "Aotreet eo bet ar jedouer reked dija." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h. Mar plij adklaskit." @@ -856,7 +857,7 @@ msgstr "Ur fazi 'zo bet en ur ensoc'hañ an avatar" #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Kinnig ar furmskrid dic'hortoz." @@ -901,19 +902,20 @@ msgstr "Kont" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Lesanv" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Ger-tremen" @@ -1035,8 +1037,8 @@ msgstr "N'eo ket skoret an hentenn HTTP." #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 -#, php-format -msgid "Unsupported format: %s" +#, fuzzy, php-format +msgid "Unsupported format: %s." msgstr "Diembreget eo ar furmad : %s" #. TRANS: Client error displayed requesting a deleted status. @@ -1213,25 +1215,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Klask alioù en danvez" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1391,7 +1394,7 @@ msgid "Not a member." msgstr "N'eo ket ezel." #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Dibosupl eo dilemel ar c'houmanant." @@ -1496,9 +1499,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Implijer hep profil klotus." @@ -1553,9 +1558,10 @@ msgstr "Adframmañ" msgid "No file uploaded." msgstr "N'eus bet enporzhiet restr ebet." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Diuzit ur zonenn gant ur stumm karrez evit tremeniñ ho avatar" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1613,7 +1619,8 @@ msgstr "Eilenn savete" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +#, fuzzy +msgid "Backup your account." msgstr "Saveteiñ ho kont" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1651,7 +1658,8 @@ msgstr "Ket" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Arabat stankañ an implijer-mañ" #. TRANS: Button label on the user block form. @@ -1668,9 +1676,9 @@ msgid "Yes" msgstr "Ya" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Stankañ an implijer-mañ" #. TRANS: Server error displayed when blocking a user fails. @@ -1830,7 +1838,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Kadarnaat" @@ -1859,13 +1867,13 @@ msgstr "N'eo ket bet kavet ar poellad" #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "N'oc'h ket perc'henn ar poellad-se." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h." @@ -1886,12 +1894,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Arabat eo dilemel ar poellad-mañ" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Dilemel ar poelad-se" #. TRANS: Client error when trying to delete group while not logged in. @@ -1942,12 +1952,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "Arabat dilemel ar strollad-mañ" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "Dilemel ar strollad-mañ" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -1988,12 +2000,14 @@ msgstr "Ha sur oc'h hoc'h eus c'hoant da zilemel ar c'hemenn-mañ ?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Arabat dilemel ar c'hemenn-mañ" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Dilemel ar c'hemenn-mañ" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2026,13 +2040,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 -msgid "Do not delete this user" +#, fuzzy +msgid "Do not delete this user." msgstr "Arabat dilemel an implijer-mañ" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Diverkañ an implijer-mañ" #. TRANS: Message used as title for design settings for the site. @@ -2196,21 +2211,21 @@ msgid "Use defaults" msgstr "Implijout an talvoudoù dre ziouer" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Adlakaat an neuz dre ziouer." #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Adlakaat an arventennoù dre ziouer" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Enrollañ an design" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2242,7 +2257,7 @@ msgid "You must be logged in to edit an application." msgstr "Ret eo bezañ kevreet evit kemmañ ur poellad." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "N'eus ket eus an arload-mañ." @@ -2524,7 +2539,7 @@ msgid "Cannot normalize that email address." msgstr "Diposubl eo implijout an ID Jabber-mañ" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "N'eo ket ur chomlec'h postel reizh." @@ -2598,19 +2613,22 @@ msgstr "Chomlec'h postel ebet o tont." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Dibosupl eo hizivaat doser an implijer." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Diverket eo bet ar chomlec'h postel o tont tre." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Ouzhpennet ez eus bet ur chomlec'h postel nevez o tont tre" @@ -2621,7 +2639,8 @@ msgstr "Ouzhpennet eo bet ar c'hemenn-mañ d'ho pennrolloù dija !" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Tennañ ar pennroll" #. TRANS: Page title for first page of favorited notices. @@ -2859,12 +2878,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Arabat stankañ an implijer-mañ eus ar strollad." #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Stankañ an implijer-mañ eus ar strollad-se" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3181,7 +3202,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Embann ur MicroID evit ma chomlec'h Jabber/GTalk." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Penndibaboù enrollet" @@ -3568,43 +3590,43 @@ msgstr "Enrollañ" msgid "Save license settings" msgstr "Enrollañ arventennoù an aotre-implijout" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Kevreet oc'h dija." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Anv implijer pe ger-tremen direizh." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "" "Ur fazi 'zo bet e-pad hizivadenn an implijer. Moarvat n'oc'h ket aotreet " "evit en ober." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Kevreañ" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Kevreañ d'al lec'hienn" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Kaout soñj" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Digeriñ va dalc'h war-eeun ar wechoù o tont ; arabat en ober war " "urzhiataeroù rannet pe publik !" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Ha kollet ho peus ho ker-tremen ?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3612,11 +3634,11 @@ msgstr "" "Evit abegoù a surentezh, mar plij adlakait hoc'h anv implijer hag ho ker-" "tremen a-benn enrollañ ho penndibaboù." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Kevreit gant ho anv implijer hag ho ker-tremen." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3826,30 +3848,30 @@ msgid "You have not registered any applications yet." msgstr "N'ho peus enrollet poellad ebet evit poent." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Poeladoù kevreet." #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "N'oc'h ket un implijer eus ar poellad-mañ." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "Dibosupl eo nullañ moned ar poellad : " #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3857,20 +3879,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "N'ho peus aotreet poellad ebet da implijout ho kont." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "N'eo ket bet kavet an implijer." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "N'eo ket bet kavet an hentenn API !" + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "N'en deus ket an ali a profil." @@ -3880,6 +3912,16 @@ msgstr "N'en deus ket an ali a profil." msgid "%1$s's status on %2$s" msgstr "Statud %1$s war %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "N'eo ket bet kavet ar resever." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, fuzzy, php-format @@ -3976,17 +4018,21 @@ msgstr "Fichenn direizh." msgid "Login token expired." msgstr "Kevreañ d'al lec'hienn" -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Boest kas %1$s - pajenn %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Boest kas %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" @@ -4012,40 +4058,45 @@ msgstr "Ger-tremen kozh" msgid "New password" msgstr "Ger-tremen nevez" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 arouezenn pe muioc'h" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "Memestra eget ar ger tremen a-us" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Kemmañ" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Rankout a ra ar ger-tremen bezañ gant 6 arouezenn d'an nebeutañ." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Ne glot ket ar gerioù-tremen." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Ger-termen kozh direizh" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Ur fazi 'zo bet e-pad enolladenn an implijer ; diwiriek." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Dibosupl eo enrollañ ar ger-tremen nevez." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Ger-tremen enrollet." @@ -4385,7 +4436,7 @@ msgid "Profile information" msgstr "Titouroù ar profil" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn" @@ -4393,7 +4444,7 @@ msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4401,13 +4452,13 @@ msgstr "Anv klok" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Pajenn degemer" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "URL ho pajenn degemer, ho blog, pe ho profil en ul lec'hienn all" @@ -4415,7 +4466,7 @@ msgstr "URL ho pajenn degemer, ho blog, pe ho profil en ul lec'hienn all" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4423,28 +4474,29 @@ msgstr[0] "Deskrivit ac'hanoc'h hag ho interestoù, gant %d arouezenn" msgstr[1] "Deskrivit ac'hanoc'h hag ho interestoù, gant %d arouezenn" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Deskrivit hoc'h-unan hag ar pezh a zedenn ac'hanoc'h" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Buhezskrid" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Lec'hiadur" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "El lec'h m'emaoc'h, da skouer \"Kêr, Stad (pe Rannvro), Bro\"" @@ -4463,8 +4515,10 @@ msgstr "Balizennoù" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Merkoù evidoc'h oc'h unan (lizherennoù, sifroù, -, ., ha _), dispartiet gant " "virgulennoù pe esaouennoù" @@ -4476,7 +4530,8 @@ msgstr "Yezh" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Yezh d'ober ganti da gentañ" #. TRANS: Dropdownlist label in form for profile settings. @@ -4491,8 +4546,9 @@ msgstr "Pehini eo gwerzhid-eur boaz ?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "En em enskrivañ ez emgefre d'an holl re hag en em goumanant din (erbedet " "evit an implijerien nann-denel)" @@ -4500,7 +4556,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4520,9 +4576,9 @@ msgstr "Re hir eo ar yezh (255 arouezenn d'ar muiañ)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Balizenn direizh : \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4669,7 +4725,7 @@ msgstr "" #: actions/publictagcloud.php:146 msgid "Tag cloud" -msgstr "Koumoulenn merkoù" +msgstr "Nivlennad tikedennoù" #. TRANS: Client error displayed trying to recover password while already logged in. #: actions/recoverpassword.php:37 @@ -4763,6 +4819,12 @@ msgstr "Adtapout ar ger-tremen" msgid "Password recovery requested" msgstr "Goulennet eo an adtapout gerioù-tremen" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Ger-tremen enrollet." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4774,12 +4836,6 @@ msgstr "Oberiadenn dianav" msgid "6 or more characters, and do not forget it!" msgstr "6 arouezenn pe muioc'h, ha n'e zisoñjit ket !" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "Memestra eget ar ger tremen a-us" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4832,14 +4888,8 @@ msgstr "Rankout a ra ar ger-tremen bezañ 6 arouezenn d'an nebeutañ." msgid "Password and confirmation do not match." msgstr "Ne glot ket ar ger-tremen gant ar c'hadarnadur." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Dibosupl eo enrollañ ar ger-tremen nevez." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Ur fazi 'zo bet e-pad kefluniadur an implijer." @@ -4848,103 +4898,102 @@ msgstr "Ur fazi 'zo bet e-pad kefluniadur an implijer." msgid "New password successfully saved. You are now logged in." msgstr "Krouet eo bet ar ger-tremen nevez. Kevreet oc'h bremañ." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "" "Digarezit, met n'eus nemet an implijerien bet pedet hag a c'hell en em " "enskrivañ." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Digarezit, kod pedadenn direizh." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Krouet eo bet ar gont." -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Krouiñ ur gont" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "N'eo ket aotreet krouiñ kontoù." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "" "Rankout a rit bezañ a-du gant termenoù an aotre-implijout evit krouiñ ur " "gont." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Implijet eo dija ar chomlec'h postel-se." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Anv implijer pe ger-tremen direizh." -#: actions/register.php:351 +#: actions/register.php:340 msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 arouezenn pe muioc'h" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Postel" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "" "Implijet hepken evit an hizivadennoù, ar c'hemennoù, pe adtapout gerioù-" "tremen" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Anv hiroc'h, ho anv \"gwir\" a zo gwelloc'h" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL ho pajenn degemer, ho blog, pe ho profil en ul lec'hienn all" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "El lec'h m'emaoc'h, da skouer \"Kêr, Stad (pe Rannvro), Bro\"" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "Kompren a ran ez eo prevez danvez ha roadennoù %1$s." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "Ma zestenn ha ma restroù a zo gwarezet dre copyright gant %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "Ma zestenn ha ma restroù a chom dindan ma gwirioù oberour." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Holl gwrioù miret strizh." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4963,7 +5012,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -4992,7 +5041,8 @@ msgid "User nickname" msgstr "Lesanv an implijer" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Lesanv an implijer ho peus c'hoant heuliañ" #: actions/remotesubscribe.php:132 @@ -5000,7 +5050,7 @@ msgid "Profile URL" msgstr "URL ar profil" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5010,7 +5060,8 @@ msgid "Subscribe" msgstr "En em enskrivañ" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "URL direizh evit ar profil (furmad fall)" #: actions/remotesubscribe.php:167 @@ -5204,7 +5255,7 @@ msgstr "Ne c'helloc'h ket reiñ rolloù d'an implijerien eus al lec'hienn-mañ." msgid "User doesn't have this role." msgstr "n'en deus ket an implijer-mañ ar rol-se." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5247,93 +5298,93 @@ msgstr "" msgid "Save site settings" msgstr "Enrollañ arventennoù al lec'hienn" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Rankout a reoc'h bezañ kevreet evit gwelet ur poellad." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Profil ar poellad" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Arlun" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Anv" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Aozadur" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Deskrivadur" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Stadegoù" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "Krouet gant %1$s - moned %2$s dre ziouer - %3$d implijer" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Obererezhioù ar poellad" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Adderaouekaat an alc'hwez hag ar sekred" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Diverkañ" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Titouroù ar poelad" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Alc'hwez implijer" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Sekred an implijer" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "URL ar jedouer reked" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "URL ar jedouer moned" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "aotren an URL" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" "Ha sur oc'h ho peus c'hoant adderaouekaat ho alc'hwez bevezer ha sekred ?" @@ -5419,16 +5470,18 @@ msgid "Group profile" msgstr "Profil ar strollad" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Notenn" @@ -5570,7 +5623,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s, pajenn %2$d" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5814,7 +5867,8 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Enrollañ ali ul lec'hienn" #. TRANS: Title for SMS settings. @@ -5875,7 +5929,7 @@ msgstr "Niverenn bellgomz evit an SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 #, fuzzy -msgid "Phone number, no punctuation or spaces, with area code" +msgid "Phone number, no punctuation or spaces, with area code." msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn" #. TRANS: Form legend for SMS preferences form. @@ -6206,8 +6260,9 @@ msgstr "Merk %s" msgid "User profile" msgstr "Profil an implijer" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Skeudenn" @@ -6224,6 +6279,11 @@ msgstr "" "Merkoù evit an implijer-mañ (lizherennoù, sifroù, -, ., ha _), dispartiet " "gant virgulennoù pe gant esaouennoù" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Balizenn direizh : \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6261,7 +6321,7 @@ msgstr "N'eus profil ID ebet er reked." msgid "Unsubscribed" msgstr "Digoumanantet" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, fuzzy, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6294,7 +6354,7 @@ msgstr "" #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" #. TRANS: Link description in user account settings menu. @@ -6359,102 +6419,143 @@ msgstr "Ma rankomp merañ an dalc'hoù hon unan." #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "Enrollañ arventennoù an implijer" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Aotreañ ar c'houmanant" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Aotre implijout" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Degemer" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "En em goumanantiñ d'an implijer-mañ" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Disteurel" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Nac'hañ ar c'houmanant" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Reked aotreañ ebet !" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Koumanant aotreet" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Koumanant bet nac'het" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " "subscription." msgstr "" -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "N'eo ket bet kavet amañ URI ar selaouer \"%s\"." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "Re hir eo an URI \"%s\" ez oc'h koumanantet dezhi." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "An URI \"%s\" ez oc'h koumanantet dezhi a zo un implijer lec'hel." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "URI ar profil \"%s\" a zo evit un implijer lec'hel." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"Aotre-implijout ar menegoù \"%1$s\" ne ya ket gant aotre-implijout al " +"lec'hienn \"%2$s\"." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "N'eo ket reizh URL an avatar \"%s\"." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Dibosupl eo lenn URL an avatar \"%s\"." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Seurt skeudenn direizh evit URL an avatar \"%s\"." #. TRANS: Page title for profile design page. @@ -7640,6 +7741,11 @@ msgstr "N'eo ket aotreet kemmañ ar ger-tremen" msgid "Block" msgstr "Stankañ" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Stankañ an implijer-mañ" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8071,6 +8177,11 @@ msgstr "Poeladoù kevreet." msgid "Database error" msgstr "Fazi bank roadennoù" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Diverkañ an implijer-mañ" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8105,6 +8216,21 @@ msgstr "Kemmañ al livioù" msgid "Use defaults" msgstr "Implijout an talvoudoù dre ziouer" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Adlakaat an neuz dre ziouer." + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Adlakaat an arventennoù dre ziouer" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Enrollañ an design" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8214,7 +8340,6 @@ msgid "Grant this user the \"%s\" role" msgstr "" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn" @@ -8894,6 +9019,10 @@ msgstr "Respont d'ar c'hemenn-mañ" msgid "Reply" msgstr "Respont" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Dilemel ar c'hemenn-mañ" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Ali adkemeret" @@ -9179,6 +9308,10 @@ msgstr "Pediñ" msgid "Invite friends and colleagues to join you on %s" msgstr "Pediñ mignoned hag kenseurted da zont ganeoc'h war %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "En em goumanantiñ d'an implijer-mañ" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9456,3 +9589,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6 arouezenn pe muioc'h" + +#~ msgid "Same as password above" +#~ msgstr "Memestra eget ar ger tremen a-us" + +#~ msgid "Can't save new password." +#~ msgstr "Dibosupl eo enrollañ ar ger-tremen nevez." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "URL ho pajenn degemer, ho blog, pe ho profil en ul lec'hienn all" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index aa29515d86..eef3ab2ee3 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:05:23+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:04+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -160,7 +160,7 @@ msgstr "No existeix la pàgina." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -524,7 +524,8 @@ msgstr "No s'ha trobat l'usuari destinatari." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" "No es pot enviar missatges directes a usuaris que no siguin els vostres " "amics." @@ -609,7 +610,7 @@ msgstr "No s'ha pogut trobar l'usuari de destinació." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Aquest sobrenom ja existeix. Prova un altre. " @@ -619,7 +620,7 @@ msgstr "Aquest sobrenom ja existeix. Prova un altre. " #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Sobrenom no vàlid." @@ -632,7 +633,7 @@ msgstr "Sobrenom no vàlid." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "La pàgina personal no és un URL vàlid." @@ -642,7 +643,7 @@ msgstr "La pàgina personal no és un URL vàlid." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "El vostre nom sencer és massa llarg (màx. 255 caràcters)." @@ -670,7 +671,7 @@ msgstr[1] "La descripció és massa llarga (màx. %d caràcters)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "La localització és massa llarga (màx. 255 caràcters)." @@ -825,15 +826,15 @@ msgstr "El testimoni de sol·licitud ja està autoritzat." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -866,7 +867,7 @@ msgstr "Error de la base de dades en inserir l'oauth_token_association." #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Enviament de formulari inesperat." @@ -917,19 +918,20 @@ msgstr "Compte" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Sobrenom" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasenya" @@ -1050,8 +1052,8 @@ msgstr "El mètode HTTP no està implementat." #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 -#, php-format -msgid "Unsupported format: %s" +#, fuzzy, php-format +msgid "Unsupported format: %s." msgstr "Format no permès: %s" #. TRANS: Client error displayed requesting a deleted status. @@ -1227,25 +1229,26 @@ msgid "Atom post must be an Atom entry." msgstr "L'enviament Atom ha de ser una entrada Atom." #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "Només es poden gestionar les activitats POST." #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "No es pot gestionar l'activitat del tipus d'objecte «%s»" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, php-format msgid "No content for notice %d." msgstr "No hi ha contingut de l'avís %d" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1400,7 +1403,7 @@ msgid "Not a member." msgstr "No és un membre." #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 msgid "Cannot delete someone else's membership." msgstr "No es pot eliminar la pertinència d'algú altre." @@ -1428,9 +1431,9 @@ msgstr "No es pot eliminar la subscripció d'algú altre." #. TRANS: Subtitle for Atom subscription feed. #. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename. #: actions/atompubsubscriptionfeed.php:153 -#, fuzzy, php-format +#, php-format msgid "People %1$s has subscribed to on %2$s" -msgstr "Gent subscrita a %s" +msgstr "Gent a qui %1$s ha subscrit a %2$s" #. TRANS: Client error displayed when not using the follow verb. #: actions/atompubsubscriptionfeed.php:248 @@ -1504,9 +1507,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "L'usuari que no coincideix amb cap perfil" @@ -1561,9 +1566,10 @@ msgstr "Retalla" msgid "No file uploaded." msgstr "No s'ha carregat cap fitxer." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "" "Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu " "avatar." @@ -1631,7 +1637,8 @@ msgstr "Còpia de seguretat" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +#, fuzzy +msgid "Backup your account." msgstr "Fes una còpia de seguretat del compte" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1672,7 +1679,8 @@ msgstr "No" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "No bloquis l'usuari" #. TRANS: Button label on the user block form. @@ -1689,9 +1697,9 @@ msgid "Yes" msgstr "Sí" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Bloca aquest usuari" #. TRANS: Server error displayed when blocking a user fails. @@ -1854,7 +1862,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Confirma" @@ -1883,13 +1891,13 @@ msgstr "No s'ha trobat l'aplicació." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "No sou el propietari d'aquesta aplicació." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "S'ha produït un problema amb el testimoni de la vostra sessió." @@ -1913,12 +1921,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "No eliminis l'aplicació" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Elimina aquesta aplicació" #. TRANS: Client error when trying to delete group while not logged in. @@ -1972,12 +1982,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "No eliminis aquest grup" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "Elimina aquest grup" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2020,12 +2032,14 @@ msgstr "Esteu segur que voleu eliminar aquest avís?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "No eliminis aquest avís" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Elimina aquest avís" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2060,13 +2074,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 -msgid "Do not delete this user" +#, fuzzy +msgid "Do not delete this user." msgstr "No eliminis aquest usuari" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Elimina l'usuari" #. TRANS: Message used as title for design settings for the site. @@ -2229,21 +2244,21 @@ msgid "Use defaults" msgstr "Utilitza els paràmetres per defecte" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Restaura els dissenys per defecte" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Torna a restaurar al valor per defecte" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Desa el disseny" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2275,7 +2290,7 @@ msgid "You must be logged in to edit an application." msgstr "Heu d'iniciar una sessió per editar una aplicació." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "No hi ha tal aplicació." @@ -2557,7 +2572,7 @@ msgid "Cannot normalize that email address." msgstr "No es pot normalitzar l'adreça electrònica." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Adreça de correu electrònic no vàlida." @@ -2632,18 +2647,21 @@ msgstr "No hi ha cap direcció de correu electrònic entrant." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 msgid "Could not update user record." msgstr "No s'ha pogut actualitzar el registre de l'usuari." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Eliminat el correu electrònic entrant." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Nou correu electrònic entrant afegit." @@ -2654,7 +2672,8 @@ msgstr "Aquest avís ja és un preferit." #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Fes que deixi de ser preferit" #. TRANS: Page title for first page of favorited notices. @@ -2894,12 +2913,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "No bloquis l'usuari del grup" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Bloca l'usuari del grup" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -2933,9 +2954,8 @@ msgstr "" #. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. #: actions/groupdesignsettings.php:262 -#, fuzzy msgid "Unable to update your design settings." -msgstr "No s'han pogut desar els paràmetres de disseny." +msgstr "No s'han pogut actualitzar els paràmetres de disseny." #. TRANS: Form text to confirm saved group design settings. #: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222 @@ -3044,7 +3064,6 @@ msgstr "Actualitzacions dels membres de %1$s el %2$s!" #. TRANS: Title for first page of the groups list. #: actions/groups.php:62 -#, fuzzy msgctxt "TITLE" msgid "Groups" msgstr "Grups" @@ -3052,7 +3071,7 @@ msgstr "Grups" #. TRANS: Title for all but the first page of the groups list. #. TRANS: %d is the page number. #: actions/groups.php:66 -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "Groups, page %d" msgstr "Grups, pàgina %d" @@ -3061,7 +3080,7 @@ msgstr "Grups, pàgina %d" #. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them. #. TRANS: This message contains Markdown links in the form [link text](link). #: actions/groups.php:95 -#, fuzzy, php-format +#, php-format msgid "" "%%%%site.name%%%% groups let you find and talk with people of similar " "interests. After you join a group you can send messages to all other members " @@ -3073,7 +3092,7 @@ msgstr "" "d'interessos semblants. Després d'unir-vos a un grup, podeu enviar missatges " "a altres membres emprant la sintaxi «!groupname». No veieu cap grup que us " "agradi? Proveu de [cercar-ne un](%%%%action.groupsearch%%%%) o [comenceu-ne " -"un de propi!](%%%%action.newgroup%%%%)" +"un de propi!](%%%%action.newgroup%%%%)!" #. TRANS: Link to create a new group on the group list page. #: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115 @@ -3104,7 +3123,7 @@ msgstr "Cap resultat." #. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user. #. TRANS: This message contains Markdown links in the form [link text](link). #: actions/groupsearch.php:87 -#, fuzzy, php-format +#, php-format msgid "" "If you cannot find the group you're looking for, you can [create it](%%" "action.newgroup%%) yourself." @@ -3147,7 +3166,7 @@ msgstr "Paràmetres de missatgeria instantània" #. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. #. TRANS: the order and formatting of link text and link should remain unchanged. #: actions/imsettings.php:71 -#, fuzzy, php-format +#, php-format msgid "" "You can send and receive notices through Jabber/Google Talk [instant " "messages](%%doc.im%%). Configure your address and settings below." @@ -3167,21 +3186,20 @@ msgid "IM address" msgstr "Adreça de missatgeria instantània" #: actions/imsettings.php:109 -#, fuzzy msgid "Current confirmed Jabber/Google Talk address." msgstr "Adreça actual Jabber/Gtalk confirmada." #. TRANS: Form note in Instant Messaging settings form. #. TRANS: %s is the Instant Messaging address set for the site. #: actions/imsettings.php:120 -#, fuzzy, php-format +#, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/Google Talk account " "for a message with further instructions. (Did you add %s to your buddy list?)" msgstr "" -"A l'espera d'una confirmació per a aquesta adreça. Busca al teu compte " -"Jabber/GTalk un missatge amb més instruccions. (Has afegit a %s a la teva " -"llista d'amics?)" +"A l'espera d'una confirmació per a aquesta adreça. Reviseu al vostre compte " +"de Jabber/GTalk si hi ha un missatge amb més instruccions. (Heu afegit a %s " +"a la llista d'amics?)" #. TRANS: IM address input field instructions in Instant Messaging settings form. #. TRANS: %s is the Instant Messaging address set for the site. @@ -3189,7 +3207,7 @@ msgstr "" #. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate #. TRANS: person or organization. #: actions/imsettings.php:139 -#, fuzzy, php-format +#, php-format msgid "" "Jabber or Google Talk address, like \"UserName@example.org\". First, make " "sure to add %s to your buddy list in your IM client or on Google Talk." @@ -3205,19 +3223,16 @@ msgstr "Preferències de MI" #. TRANS: Checkbox label in Instant Messaging preferences form. #: actions/imsettings.php:159 -#, fuzzy msgid "Send me notices through Jabber/Google Talk." msgstr "Envia'm avisos per Jabber/GTalk." #. TRANS: Checkbox label in Instant Messaging preferences form. #: actions/imsettings.php:165 -#, fuzzy msgid "Post a notice when my Jabber/Google Talk status changes." -msgstr "Envia'm un avís quan el meu estat Jabber/GTalk canvii." +msgstr "Envia un avís quan el meu estat Jabber/GTalk canviï." #. TRANS: Checkbox label in Instant Messaging preferences form. #: actions/imsettings.php:171 -#, fuzzy msgid "" "Send me replies through Jabber/Google Talk from people I'm not subscribed to." msgstr "" @@ -3226,12 +3241,12 @@ msgstr "" #. TRANS: Checkbox label in Instant Messaging preferences form. #: actions/imsettings.php:178 -#, fuzzy msgid "Publish a MicroID for my Jabber/Google Talk address." -msgstr "Publica una MicroID per al meu compte de Jabber/GTalk." +msgstr "Publica una MicroID per a la meva adreça de Jabber/GTalk." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "S'han desat les preferències." @@ -3242,15 +3257,13 @@ msgstr "Cap Jabber ID." #. TRANS: Message given saving Instant Messaging address that cannot be normalised. #: actions/imsettings.php:312 -#, fuzzy msgid "Cannot normalize that Jabber ID." -msgstr "Impossible normalitzar aquest Jabber ID" +msgstr "No es pot normalitzar aquest Jabber ID." #. TRANS: Message given saving Instant Messaging address that not valid. #: actions/imsettings.php:317 -#, fuzzy msgid "Not a valid Jabber ID." -msgstr "Jabber ID no vàlid" +msgstr "No és un ID de Jabber vàlid." #. TRANS: Message given saving Instant Messaging address that is already set. #: actions/imsettings.php:321 @@ -3413,9 +3426,8 @@ msgstr "Adreces de correu electrònic" #. TRANS: Tooltip for field label for a list of e-mail addresses. #: actions/invite.php:221 -#, fuzzy msgid "Addresses of friends to invite (one per line)." -msgstr "Adreces d'amics per convidar (una per línia)" +msgstr "Adreces d'amics per convidar (una per línia)." #. TRANS: Field label for a personal message to send to invitees. #: actions/invite.php:225 @@ -3647,43 +3659,43 @@ msgstr "Desa" msgid "Save license settings" msgstr "Desa els paràmetres de la llicència" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Ja hi heu iniciat una sessió." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Nom d'usuari o contrasenya incorrectes." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "" "S'ha produït un error en definir l'usuari. Probablement no hi esteu " "autoritzat." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Inici de sessió" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Accedir al lloc" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Recorda'm" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Inicia la sessió automàticament en el futur; no ho activeu en ordinadors " "compartits!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Contrasenya oblidada o perduda?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3691,11 +3703,11 @@ msgstr "" "Per raons de seguretat, torneu a escriure el vostre nom d'usuari i " "contrasenya abans de canviar la vostra configuració." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Inicieu una sessió amb nom d'usuari i contrasenya" -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3905,30 +3917,30 @@ msgid "You have not registered any applications yet." msgstr "No teniu cap aplicació registrada encara." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Aplicacions connectades" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "Les connexions següents existeixen per al vostre compte." #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "No sou usuari de l'aplicació." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, php-format msgid "Unable to revoke access for application: %s." msgstr "No s'ha pogut revocar l'accés de l'aplicació: %s" #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3938,14 +3950,14 @@ msgstr "" "2$s." #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "No heu autoritzat cap aplicació perquè utilitzi el vostre compte." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " @@ -3954,6 +3966,16 @@ msgstr "" "Sou un desenvolupador? [Registreu una aplicació de client OAuth](%s) per " "utilitzar-la amb una instància de l'StatusNet." +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "No s'ha trobat el mètode API!" + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "No s'ha trobat l'avís pare." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "L'avís no té cap perfil." @@ -3963,6 +3985,16 @@ msgstr "L'avís no té cap perfil." msgid "%1$s's status on %2$s" msgstr "estat de %1$s a %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "No s'ha trobat l'usuari destinatari." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4053,17 +4085,21 @@ msgstr "No s'ha especificat un testimoni d'inici de sessió vàlid." msgid "Login token expired." msgstr "El testimoni d'inici de sessió ha vençut." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Safata de sortida de %1$s - pàgina %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Safata de sortida per %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "Aquesta és la teva safata de sortida, que et mostrarà els missatges privats " @@ -4091,40 +4127,42 @@ msgstr "Antiga contrasenya" msgid "New password" msgstr "Nova contrasenya" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" -msgstr "6 o més caràcters" +#: actions/passwordsettings.php:109 actions/register.php:423 +msgid "6 or more characters." +msgstr "6 o més caràcters." -#: actions/passwordsettings.php:113 -msgid "Same as password above" -msgstr "Igual a la contrasenya de dalt" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +msgid "Same as password above." +msgstr "Igual que la contrasenya de dalt" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Canvia" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "La contrasenya hauria de ser d'entre 6 a més caràcters." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Les contrasenyes no coincideixen." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Contrasenya antiga incorrecta" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "S'ha produït un error en desar l'usuari; no és vàlid." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +msgid "Cannot save new password." msgstr "No es pot desar la nova contrasenya." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Contrasenya guardada." @@ -4451,7 +4489,7 @@ msgid "Profile information" msgstr "Informació del perfil" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1-64 lletres en minúscula o nombres, sense signes de puntuació o espais." @@ -4459,7 +4497,7 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4467,20 +4505,20 @@ msgstr "Nom complet" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Pàgina personal" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site." msgstr "URL del vostre web, blog o perfil en un altre lloc." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4488,28 +4526,29 @@ msgstr[0] "Descriviu qui sou i els vostres interessos en %d caràcter" msgstr[1] "Descriviu qui sou i els vostres interessos en %d caràcters" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Feu una descripció personal i interessos" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Biografia" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Ubicació" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "On us trobeu, per exemple «ciutat, comarca (o illa), país»" @@ -4528,8 +4567,10 @@ msgstr "Etiquetes" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Etiquetes pròpies (lletres, nombres, -, ., i _), per comes o separades amb " "espais" @@ -4541,7 +4582,8 @@ msgstr "Llengua" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Llengua preferida" #. TRANS: Dropdownlist label in form for profile settings. @@ -4556,8 +4598,9 @@ msgstr "En quin fus horari us trobeu normalment?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Subscripció automàtica a qualsevol qui em tingui subscrit (ideal per no-" "humans)" @@ -4565,7 +4608,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4584,9 +4627,9 @@ msgstr "La llengua és massa llarga (màxim 50 caràcters)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "L'etiqueta no és vàlida: «%s»" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4829,6 +4872,12 @@ msgstr "Recupera la contrasenya" msgid "Password recovery requested" msgstr "Recuperació de contrasenya sol·licitada" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Contrasenya guardada." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4839,11 +4888,6 @@ msgstr "Acció desconeguda" msgid "6 or more characters, and do not forget it!" msgstr "6 o més caràcters, i no ho oblideu!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -msgid "Same as password above." -msgstr "Igual que la contrasenya de dalt" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4895,13 +4939,8 @@ msgstr "La contrasenya ha de tenir 6 o més caràcters." msgid "Password and confirmation do not match." msgstr "La contrasenya i la confirmació no coincideixen." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -msgid "Cannot save new password." -msgstr "No es pot desar la nova contrasenya." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Error en configurar l'usuari." @@ -4910,93 +4949,94 @@ msgstr "Error en configurar l'usuari." msgid "New password successfully saved. You are now logged in." msgstr "Nova contrasenya guardada correctament. Has iniciat una sessió." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Ho sentim, però només la gent convidada pot registrar-s'hi." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "El codi d'invitació no és vàlid." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Registre satisfactori" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Registre" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Registre no permès." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "No pots registrar-te si no estàs d'acord amb la llicència." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "L'adreça de correu electrònic ja existeix." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "El nom d'usuari o la contrasenya no són vàlids." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "Amb aquest formulari, podeu crear un compte nou. Podeu enviar avisos i " "enllaçar a amics i col·legues. " -#: actions/register.php:437 -msgid "6 or more characters." -msgstr "6 o més caràcters." - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Correu electrònic" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "" "Utilitzat només per a actualitzacions, anuncis i recuperació de contrasenya" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Nom llarg, preferiblement el vostre nom «real»" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL del teu web, blog o perfil en un altre lloc" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "On us trobeu, per exemple «ciutat, comarca (o illa), país»" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" "Entenc que el contingut i les dades de %1$s són privades i confidencials." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "El meu text i els meus fitxers són copyright de %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "El meu text i els meus fitxers es troben sota el meu propi copyright." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Tots els drets reservats." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5006,7 +5046,7 @@ msgstr "" "les dades privades: contrasenya, adreça de correu electrònic, adreça de " "missatgeria instantània i número de telèfon." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5039,7 +5079,7 @@ msgstr "" "\n" "Gràcies per registrar-vos-hi i esperem que en gaudiu." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5072,7 +5112,8 @@ msgid "User nickname" msgstr "Sobrenom de l'usuari" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Sobrenom de l'usuari que vols seguir" #: actions/remotesubscribe.php:132 @@ -5080,7 +5121,8 @@ msgid "Profile URL" msgstr "URL del perfil" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "URL del teu perfil en un altre servei de microblogging compatible" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5090,7 +5132,8 @@ msgid "Subscribe" msgstr "Subscriu-m'hi" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "L'URL del perfil és invàlid (format incorrecte)" #: actions/remotesubscribe.php:167 @@ -5290,7 +5333,7 @@ msgstr "No podeu revocar els rols d'usuari en aquest lloc." msgid "User doesn't have this role." msgstr "L'usuari no té aquest rol." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5332,87 +5375,87 @@ msgstr "Activa la sortida de depuració per a les sessions." msgid "Save site settings" msgstr "Desa els paràmetres del lloc" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Heu d'haver iniciat una sessió per visualitzar una aplicació." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Perfil de l'aplicació" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Icona" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Nom" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organització" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Descripció" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Estadístiques" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "Creat per %1$s - %2$s accés per defecte - %3$d usuaris" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Accions d'aplicació" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Reinicialitza la clau i la secreta" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Elimina" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Informació de l'aplicació" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Clau del consumidor" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Secreta del consumidor" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "Sol·licita l'URL del testimoni" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "Accedeix a l'URL del testimoni" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "Autoritza l'URL" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5420,7 +5463,7 @@ msgstr "" "Nota: Les signatures HMAC-SHA1 són vàlides; però no es permet el mètode de " "signatures en text net." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" "Esteu segur que voleu reinicialitzar la clau del consumidor i la secreta?" @@ -5512,16 +5555,18 @@ msgid "Group profile" msgstr "Perfil del grup" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Avisos" @@ -5667,7 +5712,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s etiquetats %2$s" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5917,7 +5962,8 @@ msgstr "Text d'avís per a tot el lloc (màxim 255 caràcters; es permet l'HTML) #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Desa l'avís per a tot el lloc" #. TRANS: Title for SMS settings. @@ -5977,7 +6023,8 @@ msgstr "Número de telèfon per als SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Número de telèfon, no puntuació ni espais, en l'àrea del codi" #. TRANS: Form legend for SMS preferences form. @@ -6314,8 +6361,9 @@ msgstr "Etiqueta %s" msgid "User profile" msgstr "Perfil de l'usuari" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Foto" @@ -6332,6 +6380,11 @@ msgstr "" "Etiquetes d'aquest usuari (lletres, nombres,, -, ., i _), comes o separades " "amb espais" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "L'etiqueta no és vàlida: «%s»" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6369,7 +6422,7 @@ msgstr "No hi ha cap identificador del perfil en la sol·licitud." msgid "Unsubscribed" msgstr "No subscrit" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6402,8 +6455,8 @@ msgstr "" #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 -#, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +#, fuzzy, php-format +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "La subscripció per defecte no és vàlida: «%1$s» no és cap usuari." #. TRANS: Link description in user account settings menu. @@ -6463,55 +6516,71 @@ msgstr "Si es permet als usuaris invitar-ne de nous." #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "Desa els paràmetres d'usuari" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Autoritza la subscripció" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Si us plau, reviseu aquests detalls per assegurar-vos que voleu subscriure-" "us als avisos d'aquest usuari. Si no heu demanat subscriure-us als avisos de " "ningú, feu clic a «Rebutja»." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Llicència" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Accepta" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Subscriu-me a aquest usuari" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Rebutja" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Rebutja la subscripció" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "No és una sol·licitud d'autorització!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Subscripció autoritzada" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6521,11 +6590,12 @@ msgstr "" "retorn. Reviseu les instruccions del lloc per tal de tenir més detalls de " "com autoritzar la subscripció. El vostre testimoni de subscripció és:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Subscripció rebutjada" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6535,39 +6605,64 @@ msgstr "" "retorn. Reviseu les instruccions del lloc per tal de tenir més detalls de " "com rebutjar la subscripció completament." -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "No s'hi ha trobat l'URI de qui us escolta, «%s»." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "L'URI de qui escolteu, «%s», és massa llarga." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "L'URI de qui escolteu, «%s», és un usuari local." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "L'URL del perfil «%s» és només per a un usuari local." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"La llicència del flux de qui escolteu, «%1$s», no és compatible amb la " +"llicència del lloc, «%2$s»." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "L'URL de l'avatar «%s» no és vàlid." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "No es pot llegir l'URL de l'avatar «%s»." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Tipus d'imatge incorrecta per a l'URL de l'avatar «%s»." #. TRANS: Page title for profile design page. @@ -7421,7 +7516,7 @@ msgstr "L'usuari ja és membre d'aquest grup." #: lib/activityimporter.php:201 #, php-format msgid "Already know about notice %1$s and it has a different author %2$s." -msgstr "" +msgstr "Ja es coneix l'avís %1$s i té un autor diferent %2$s." #. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import. #: lib/activityimporter.php:207 @@ -7784,6 +7879,11 @@ msgstr "No es permet el canvi de contrasenya." msgid "Block" msgstr "Bloca" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Bloca aquest usuari" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8239,6 +8339,11 @@ msgstr "Aplicacions de connexió autoritzades" msgid "Database error" msgstr "Error de la base de dades" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Elimina l'usuari" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8275,6 +8380,21 @@ msgstr "Canvia els colors" msgid "Use defaults" msgstr "Utilitza els paràmetres per defecte" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Restaura els dissenys per defecte" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Torna a restaurar al valor per defecte" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Desa el disseny" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8379,7 +8499,6 @@ msgid "Grant this user the \"%s\" role" msgstr "Atorga a l'usuari el rol «%s»" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 lletres en minúscula o nombres, sense signes de puntuació o espais." @@ -8393,11 +8512,11 @@ msgid "Describe the group or topic" msgstr "Descriviu el grup o la temàtica" #: lib/groupeditform.php:163 -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d character or less" msgid_plural "Describe the group or topic in %d characters or less" -msgstr[0] "Descriviu el grup o la temàtica en %d caràcter o menys." -msgstr[1] "Descriviu el grup o la temàtica en %d caràcters o menys." +msgstr[0] "Descriviu el grup o la temàtica en %d caràcter" +msgstr[1] "Descriviu el grup o la temàtica en %d caràcters" #: lib/groupeditform.php:175 msgid "" @@ -9048,9 +9167,8 @@ msgid "Send" msgstr "Envia" #: lib/messagelist.php:77 -#, fuzzy msgid "Messages" -msgstr "Missatge" +msgstr "Missatges" #: lib/messagelistitem.php:123 lib/noticelist.php:522 msgid "from" @@ -9158,6 +9276,10 @@ msgstr "Respon a aquest avís" msgid "Reply" msgstr "Respon" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Elimina aquest avís" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Avís repetit" @@ -9433,6 +9555,10 @@ msgstr "Convida" msgid "Invite friends and colleagues to join you on %s" msgstr "Convida amics i companys perquè participin a %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Subscriu-me a aquest usuari" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9705,3 +9831,15 @@ msgstr "L'XML no és vàlid, hi manca l'arrel XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Es recupera la còpia de seguretat del fitxer '%s'." + +#~ msgid "6 or more characters" +#~ msgstr "6 o més caràcters" + +#~ msgid "Same as password above" +#~ msgstr "Igual a la contrasenya de dalt" + +#~ msgid "Can't save new password." +#~ msgstr "No es pot desar la nova contrasenya." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "URL del teu web, blog o perfil en un altre lloc" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index fc84189c16..acfd4bc67e 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -11,18 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:05:25+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:05+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : " "2 );\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -154,7 +154,7 @@ msgstr "Tady žádná taková stránka není." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -521,7 +521,8 @@ msgstr "Příjemce nebyl nalezen." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "Nelze odesílat zprávy uživatelům, kteří nejsou vašimi přáteli." #. TRANS: Client error displayed trying to direct message self (403). @@ -606,7 +607,7 @@ msgstr "Nepodařilo se najít cílového uživatele." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Přezdívku již někdo používá. Zkuste jinou." @@ -616,7 +617,7 @@ msgstr "Přezdívku již někdo používá. Zkuste jinou." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Není platnou přezdívkou." @@ -629,7 +630,7 @@ msgstr "Není platnou přezdívkou." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "Domovská stránka není platná URL." @@ -639,7 +640,7 @@ msgstr "Domovská stránka není platná URL." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Celé jméno je moc dlouhé (maximální délka je 255 znaků)." @@ -669,7 +670,7 @@ msgstr[2] "Popis je příliš dlouhý (maximálně %d znaků)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Umístění je příliš dlouhé (maximálně 255 znaků)." @@ -829,15 +830,15 @@ msgstr "Nejste autorizován." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "Nastal problém s vaším session tokenem. Zkuste to znovu, prosím." @@ -869,7 +870,7 @@ msgstr "Chyba databáze při vkládání uživatele aplikace OAuth." #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Nečekaný požadavek." @@ -921,19 +922,20 @@ msgstr "Účet" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Přezdívka" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Heslo" @@ -1057,7 +1059,7 @@ msgstr " API metoda nebyla nalezena." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "Nepodporovaný formát." #. TRANS: Client error displayed requesting a deleted status. @@ -1237,25 +1239,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Najít v obsahu oznámení" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." @@ -1423,7 +1426,7 @@ msgid "Not a member." msgstr "Všichni členové" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Nelze smazat odebírání sebe sama" @@ -1528,9 +1531,11 @@ msgstr "Můžete nahrát váš osobní avatar. Maximální velikost souboru je % #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Uživatel bez odpovídajícího profilu." @@ -1588,9 +1593,10 @@ msgstr "Oříznout" msgid "No file uploaded." msgstr "žádný soubor nebyl nahrán." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Vyberte čtvercovou plochu obrázku, která bude váš avatar" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1650,7 +1656,7 @@ msgstr "Pozadí" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1691,7 +1697,8 @@ msgstr "Poznámka" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Zablokovat tohoto uživatele" #. TRANS: Button label on the user block form. @@ -1708,9 +1715,9 @@ msgid "Yes" msgstr "Ano" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Zablokovat tohoto uživatele" #. TRANS: Server error displayed when blocking a user fails. @@ -1875,7 +1882,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Potvrdit" @@ -1905,13 +1912,13 @@ msgstr "Aplikace nebyla nalezena." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Nejste vlastníkem této aplikace." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Nastal problém s vaším session tokenem." @@ -1934,12 +1941,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Neodstraňujte tuto aplikaci" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Odstranit tuto aplikaci" #. TRANS: Client error when trying to delete group while not logged in. @@ -1997,13 +2006,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 #, fuzzy -msgid "Do not delete this group" +msgid "Do not delete this group." msgstr "Neodstraňujte toto oznámení" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 #, fuzzy -msgid "Delete this group" +msgid "Delete this group." msgstr "Odstranit tohoto uživatele" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2046,12 +2055,14 @@ msgstr "Jste si jisti, že chcete smazat tohoto oznámení?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Neodstraňujte toto oznámení" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Odstranit toto oznámení" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2088,13 +2099,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "Neodstraňujte toto oznámení" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Odstranit tohoto uživatele" #. TRANS: Message used as title for design settings for the site. @@ -2261,21 +2272,21 @@ msgid "Use defaults" msgstr "Použít výchozí" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Obnovit výchozí vzhledy" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Reset zpět do výchozího" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Uložit vzhled" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2307,7 +2318,7 @@ msgid "You must be logged in to edit an application." msgstr "Pro úpravy aplikace musíte být přihlášen." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Aplikace neexistuje." @@ -2588,7 +2599,7 @@ msgid "Cannot normalize that email address." msgstr "Nepodařilo se normalizovat (kanonizovat) e-mailovou adresu." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Není platnou mailovou adresou." @@ -2665,19 +2676,22 @@ msgstr "Nemáte příchozí e-mailovou adresu." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Nelze aktualizovat záznam uživatele." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Příchozí e-mailová adresa odstraněna." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Přidána nová příchozí e-mailová adresa." @@ -2688,7 +2702,8 @@ msgstr "Tuto hlášku již máte v oblíbených." #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Znemilostnit oblíbenou" #. TRANS: Page title for first page of favorited notices. @@ -2928,12 +2943,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Neblokujte tohoto uživatele z této skupiny" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Blokovat tohoto uživatele z této skupiny" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3263,7 +3280,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Publikovat MicroID pro mou Jabber / GTalk adresu." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Nastavení uloženo" @@ -3681,40 +3699,40 @@ msgstr "Uložit" msgid "Save license settings" msgstr "" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Již přihlášen" -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Neplatné jméno nebo heslo" -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "Chyba při nastavení uživatele. Pravděpodobně nejste autorizován." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Přihlásit" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Přihlásit se na stránky" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Zapamatuj si mě" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Příště automaticky přihlásit; ne pro počítače, které používá více lidí! " -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Ztracené nebo zapomenuté heslo?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3722,11 +3740,11 @@ msgstr "" "Z bezpečnostních důvodů, prosím zadejte znovu své jméno a heslo než budete " "měnit svá nastavení." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Přihlásit se pomocí svého uživatelského jména a hesla." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3939,30 +3957,30 @@ msgid "You have not registered any applications yet." msgstr "Ještě jste nezaregistrovali žádné aplikace." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Propojené aplikace" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Nejste uživatel této aplikace." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "Nelze zrušit přístup aplikace %s." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3970,20 +3988,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "Žádným aplikacím jste nepovolili používat váš účet." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr " API metoda nebyla nalezena." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr " API metoda nebyla nalezena." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Uživatel nemá profil." @@ -3993,6 +4021,16 @@ msgstr "Uživatel nemá profil." msgid "%1$s's status on %2$s" msgstr "status %1 na %2" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Příjemce nebyl nalezen." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4083,17 +4121,21 @@ msgstr "Neplatný přihlašovací token." msgid "Login token expired." msgstr "Přihlašovací token vypršel." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Odeslaná pošta uživatele %1$s - strana %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Odeslané uživatele %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "Toto je váš outbox, který obsahuje seznam soukromých zpráv které jste " @@ -4121,40 +4163,45 @@ msgstr "Staré heslo" msgid "New password" msgstr "Nové heslo" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 a více znaků" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "Stejné jako heslo výše" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Změnit" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Heslo musí být alespoň 6 znaků dlouhé" -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Hesla nesouhlasí" -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Nesprávné staré heslo" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Chyba při ukládaní uživatele; neplatný." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Nelze uložit nové heslo" -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Heslo uloženo" @@ -4497,7 +4544,7 @@ msgid "Profile information" msgstr "Nastavené Profilu" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer" @@ -4505,7 +4552,7 @@ msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4513,13 +4560,13 @@ msgstr "Celé jméno" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Moje stránky" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." @@ -4527,7 +4574,7 @@ msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4536,28 +4583,29 @@ msgstr[1] "Popište sebe a své zájmy" msgstr[2] "Popište sebe a své zájmy" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Popište sebe a své zájmy" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "O mě" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Umístění" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Místo. Město, stát." @@ -4576,8 +4624,10 @@ msgstr "Tagy" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "Otagujte se (písmena, čísla, -, . a _), oddělené čárkami nebo mezerami" #. TRANS: Dropdownlist label in form for profile settings. @@ -4587,7 +4637,8 @@ msgstr "Jazyk" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Preferovaný jazyk" #. TRANS: Dropdownlist label in form for profile settings. @@ -4602,8 +4653,9 @@ msgstr "V jaké časové zóně se obyčejně nacházíte?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Automaticky se přihlásit k odběru toho kdo se přihlásil ke mně (nejlepší pro " "ne-lidi)" @@ -4611,7 +4663,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4632,9 +4684,9 @@ msgstr "Jazyk je příliš dlouhý (max. 50 znaků)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Neplatná velikost" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4875,6 +4927,12 @@ msgstr "Obnovit heslo" msgid "Password recovery requested" msgstr "Zažádáno o obnovu hesla" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Heslo uloženo" + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4886,12 +4944,6 @@ msgstr "Neznámá akce" msgid "6 or more characters, and do not forget it!" msgstr "6 a více znaků, a nezapomeňte ho!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "Stejné jako heslo výše" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4945,14 +4997,8 @@ msgstr "Heslo musí být alespoň 6 znaků dlouhé" msgid "Password and confirmation do not match." msgstr "Heslo a potvrzení nesouhlasí" -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Nelze uložit nové heslo" - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Chyba nastavení uživatele" @@ -4961,92 +5007,92 @@ msgstr "Chyba nastavení uživatele" msgid "New password successfully saved. You are now logged in." msgstr "Nové heslo bylo uloženo. Nyní jste přihlášen." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Litujeme, jen pozvaní se mohou registrovat." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Litujeme, neplatný kód pozvánky." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Registrace úspěšná" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Registrovat" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Registrace není povolena." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Emailová adresa již existuje" -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Neplatné jméno nebo heslo" -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "Pomocí tohoto formuláře můžete vytvořit nový účet. Můžete pak posílat " "oznámení a propojit se s přáteli a kolegy. " -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 a více znaků" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Email" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "Použije se pouze pro aktualizace, oznámení a obnovu hesla." -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Delší jméno, nejlépe vaše \"skutečné\" jméno" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Místo. Město, stát." -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "Chápu, že obsah a data %1$S jsou soukromé a důvěrné." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "Můj text a soubory jsou copyrightovány %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "Můj text a soubory zůstanou pod mým vlastním copyrightem." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Všechna práva vyhrazena." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5055,7 +5101,7 @@ msgstr "" "Můj text a soubory jsou k dispozici pod %s výjimkou těchto soukromých dat: " "heslo, e-mailová adresa, IM adresa a telefonní číslo." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5088,7 +5134,7 @@ msgstr "" "\n" "Díky za registraci a doufáme, že se vám používání této služby bude líbít." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5120,7 +5166,8 @@ msgid "User nickname" msgstr "Přezdívka uživatele" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Přezdívka uživatele, kterého chcete sledovat" #: actions/remotesubscribe.php:132 @@ -5128,7 +5175,8 @@ msgid "Profile URL" msgstr "Adresa Profilu" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "Adresa profilu na jiných kompatibilních mikroblozích." #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5138,7 +5186,8 @@ msgid "Subscribe" msgstr "Odebírat" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "Neplatná adresa profilu (špatný formát)" #: actions/remotesubscribe.php:167 @@ -5341,7 +5390,7 @@ msgstr "Nemůžete rušit uživatelské role na této stránce." msgid "User doesn't have this role." msgstr "Uživatel nemá tuto roli." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5383,94 +5432,94 @@ msgstr "Zapnout výstup pro debugování sessions" msgid "Save site settings" msgstr "Uložit Nastavení webu" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Musíte být přihlášeni pro zobrazení aplikace." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Profil aplikace" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Ikona" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Název" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organizace" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Popis" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Statistiky" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" "Vytvořil %1$s - s \"%2$s\" přístupem ve výchozím nastavení - %3$d uživatelů" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Akce aplikace" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Resetovat klíč a tajemství" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Odstranit" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Info o aplikaci" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Spotřebitelský klíč" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Spotřebitelské tajemství" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "Adresa řetězce požadavku" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "URL Access tokenu" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "Authorizační URL" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "Poznámka: podpora HMAC-SHA1 podpisů. Nepodporujeme plaintext." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" "Jste si jisti, že chcete resetovat svůj spotřebitelský klíč a tajemství?" @@ -5563,16 +5612,18 @@ msgid "Group profile" msgstr "Profil skupiny" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Poznámka" @@ -5719,7 +5770,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s, strana %2$d" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5965,7 +6016,8 @@ msgstr "Celo-webové sdělení (255 znaků max., s HTML)" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Uložit oznámení stránky" #. TRANS: Title for SMS settings. @@ -6023,7 +6075,8 @@ msgstr "SMS telefonní číslo" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Telefonní číslo, Nepoužívej interpunkci nebo mezery, s předčíslím" #. TRANS: Form legend for SMS preferences form. @@ -6360,8 +6413,9 @@ msgstr "Otagujte %s" msgid "User profile" msgstr "Uživatelský profil" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Fotka" @@ -6378,6 +6432,11 @@ msgstr "" "Tagy pro tohoto uživatele (písmena, číslice, -,., a _), oddělené čárkou nebo " "mezerou" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Neplatná velikost" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6415,7 +6474,7 @@ msgstr "CHybí ID profilu v žádosti." msgid "Unsubscribed" msgstr "Odhlášeno" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6448,7 +6507,7 @@ msgstr "Neplatné uvítací text. Max délka je 255 znaků." #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, fuzzy, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Neplatné výchozí přihlášení: '%1$s' není uživatel." #. TRANS: Link description in user account settings menu. @@ -6509,55 +6568,71 @@ msgstr "Zda chcete uživatelům umožnit pozvat nové uživatele." #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" -msgstr "" +#, fuzzy +msgid "Save user settings." +msgstr "Uložit Nastavení webu" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Autorizujte přihlášení" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat " "sdělení tohoto uživatele. Pokud jste právě nepožádali o přihlášení k tomuto " "uživteli, klikněte na \"Zrušit\"" +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Licence" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Přijmout" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Přihlásit se k tomuto uživateli" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Odmítnout" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Odmítnout toto přihlášení" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Žádná žádost o autorizaci!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Odběr autorizován" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6567,11 +6642,12 @@ msgstr "" "nápovědě jak správně postupovat při autorizování odběru. Váš řetězec odběru " "je:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Odběr odmítnut" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6580,39 +6656,63 @@ msgstr "" "Odebírání bylo zamítnuto, ale nepřišla žádná callback adresa. Zkontrolujte v " "nápovědě jak správně postupovat pro plné zamítnutí odběru." -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "Naslouchací URI ‘%s’ zde nebyl nalezen." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "Naslouchací URI ‘%s’ je příliš dlouhý." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "Naslouchací URI ‘%s’ je místní uživatel." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "URL profilu '%s' je pro místního uživatele." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"Licence naslouchaného '%1$s' není kompatibilní s licencí stránky '%2$s'." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "URL avataru ‘%s’ není platný." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Nelze načíst avatara z URL '%s'" -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Špatný typ obrázku na URL '%s'" #. TRANS: Page title for profile design page. @@ -7827,6 +7927,11 @@ msgstr "Změna hesla není povolena" msgid "Block" msgstr "Blokovat" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Zablokovat tohoto uživatele" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8287,6 +8392,11 @@ msgstr "Autorizované propojené aplikace" msgid "Database error" msgstr "Chyba databáze" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Odstranit tohoto uživatele" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8325,6 +8435,21 @@ msgstr "Změnit barvy" msgid "Use defaults" msgstr "Použít výchozí" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Obnovit výchozí vzhledy" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Reset zpět do výchozího" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Uložit vzhled" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8432,7 +8557,6 @@ msgid "Grant this user the \"%s\" role" msgstr "Dát tomuto uživateli roli \"%s\"" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer" @@ -9212,6 +9336,10 @@ msgstr "Odpovědět na toto oznámení" msgid "Reply" msgstr "Odpovědět" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Odstranit toto oznámení" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Sdělení opakováno" @@ -9493,6 +9621,10 @@ msgstr "Pozvat" msgid "Invite friends and colleagues to join you on %s" msgstr "Pozvěte přátele a kolegy, aby se k vám připojili na %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Přihlásit se k tomuto uživateli" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9773,3 +9905,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6 a více znaků" + +#~ msgid "Same as password above" +#~ msgstr "Stejné jako heslo výše" + +#~ msgid "Can't save new password." +#~ msgstr "Nelze uložit nové heslo" + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 791799f3d1..ad4bd485ef 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -20,17 +20,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:05:27+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:07+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -163,7 +163,7 @@ msgstr "Seite nicht vorhanden" #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -529,7 +529,8 @@ msgstr "Empfänger nicht gefunden." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" "Es können keine direkten Nachrichten an Benutzer geschickt werden mit denen " "du nicht befreundet bist." @@ -616,7 +617,7 @@ msgstr "Konnte keine Statusmeldungen finden." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Benutzername wird bereits verwendet. Suche dir einen anderen aus." @@ -626,7 +627,7 @@ msgstr "Benutzername wird bereits verwendet. Suche dir einen anderen aus." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Ungültiger Benutzername." @@ -639,7 +640,7 @@ msgstr "Ungültiger Benutzername." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "" "Homepage ist keine gültige URL. URLs müssen ein Präfix wie http enthalten." @@ -650,7 +651,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "Der bürgerliche Name ist zu lang (maximal 255 Zeichen)." @@ -678,7 +679,7 @@ msgstr[1] "Die Beschreibung ist zu lang (max. %d Zeichen)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)." @@ -833,15 +834,15 @@ msgstr "Anfrage-Token bereits autorisiert." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." @@ -872,7 +873,7 @@ msgstr "Datenbankfehler beim Einfügen von oauth_token_association." #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Unerwartete Formulareingabe." @@ -923,19 +924,20 @@ msgstr "Profil" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Benutzername" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Passwort" @@ -1057,8 +1059,8 @@ msgstr "HTTP-Methode wird nicht unterstützt." #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 -#, php-format -msgid "Unsupported format: %s" +#, fuzzy, php-format +msgid "Unsupported format: %s." msgstr "Nicht unterstütztes Bildformat: %s" #. TRANS: Client error displayed requesting a deleted status. @@ -1240,25 +1242,26 @@ msgid "Atom post must be an Atom entry." msgstr "Atom-Post muss ein Atom-Eintrag sein." #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "Nur POST verwenden" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, php-format msgid "No content for notice %d." msgstr "Kein Inhalt für Nachricht %d." #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1419,7 +1422,7 @@ msgid "Not a member." msgstr "Kein Mitglied" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Konnte Selbst-Abonnement nicht löschen." @@ -1525,9 +1528,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Benutzer ohne passendes Profil" @@ -1582,9 +1587,10 @@ msgstr "Zuschneiden" msgid "No file uploaded." msgstr "Keine Datei hoch geladen." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "" "Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" @@ -1644,8 +1650,9 @@ msgstr "Backup" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" -msgstr "" +#, fuzzy +msgid "Backup your account." +msgstr "Backup-Konto" #. TRANS: Client error displayed when blocking a user that has already been blocked. #: actions/block.php:68 @@ -1685,7 +1692,8 @@ msgstr "Nein" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Diesen Benutzer freigeben" #. TRANS: Button label on the user block form. @@ -1702,9 +1710,9 @@ msgid "Yes" msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Diesen Benutzer blockieren" #. TRANS: Server error displayed when blocking a user fails. @@ -1864,7 +1872,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Bestätigen" @@ -1894,13 +1902,13 @@ msgstr "Programm nicht gefunden." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Du bist Besitzer dieses Programms" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Es gab ein Problem mit deinem Sessiontoken." @@ -1923,12 +1931,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Dieses Programm nicht löschen" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Programm löschen" #. TRANS: Client error when trying to delete group while not logged in. @@ -1982,12 +1992,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "Diese Gruppe nicht löschen" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "Diese Gruppe löschen" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2030,12 +2042,14 @@ msgstr "Bist du sicher, dass du diese Nachricht löschen möchtest?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Diese Nachricht nicht löschen" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Nachricht löschen" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2070,13 +2084,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 -msgid "Do not delete this user" +#, fuzzy +msgid "Do not delete this user." msgstr "Diesen Benutzer nicht löschen" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Diesen Benutzer löschen" #. TRANS: Message used as title for design settings for the site. @@ -2241,21 +2256,21 @@ msgid "Use defaults" msgstr "Standardeinstellungen benutzen" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Standard-Design wiederherstellen" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Standard wiederherstellen" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Design speichern" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2287,7 +2302,7 @@ msgid "You must be logged in to edit an application." msgstr "Du musst angemeldet sein, um eine Anwendung zu bearbeiten." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Anwendung nicht bekannt." @@ -2571,7 +2586,7 @@ msgid "Cannot normalize that email address." msgstr "Konnte diese E-Mail-Adresse nicht normalisieren" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ungültige E-Mail-Adresse." @@ -2648,19 +2663,22 @@ msgstr "Keine Eingangs-E-Mail-Adresse." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Konnte Benutzereintrag nicht schreiben" #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Eingehende E-Mail-Adresse entfernt" #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Neue Eingangs-E-Mail-Adresse hinzugefügt." @@ -2671,7 +2689,8 @@ msgstr "Diese Nachricht ist bereits ein Favorit!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Aus Favoriten entfernen" #. TRANS: Page title for first page of favorited notices. @@ -2912,12 +2931,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Diesen Benutzerzugang nicht für diese Gruppe blockieren." #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Diesen Benutzer von der Gruppe blockieren" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3251,7 +3272,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "MicroID für meine Jabber/GTalk-Adresse veröffentlichen." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Einstellungen gesichert." @@ -3671,40 +3693,40 @@ msgstr "Speichern" msgid "Save license settings" msgstr "Lizenz-Einstellungen speichern" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Bereits angemeldet." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Falscher Benutzername oder Passwort." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "" "Fehler beim Setzen des Benutzers. Du bist vermutlich nicht autorisiert." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Anmelden" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "An Seite anmelden" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Anmeldedaten merken" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "Automatisch anmelden; nicht bei gemeinsam genutzten PCs einsetzen!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Passwort vergessen?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3712,11 +3734,11 @@ msgstr "" "Bitte gebe aus Sicherheitsgründen deinen Benutzernamen und dein Passwort " "ein, bevor die Änderungen an deinen Einstellungen übernommen werden." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Mit Benutzernamen und Passwort anmelden." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3930,31 +3952,31 @@ msgid "You have not registered any applications yet." msgstr "Du hast noch keine Programme registriert" #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Verbundene Programme" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" "Du hast den folgenden Programmen erlaubt, auf dein Benutzerkonto zuzugreifen." #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Du bist kein Benutzer dieses Programms." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, php-format msgid "Unable to revoke access for application: %s." msgstr "Kann Zugang dieses Programm nicht entfernen: %s." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3963,7 +3985,7 @@ msgstr "" "Sie haben den Zugang von %1$s und den Tokem mit %2$s erfolgreich entfernt." #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "" "Du hast noch keinem Programm die Erlaubnis gegeben, dein Profil zu benutzen." @@ -3971,7 +3993,7 @@ msgstr "" #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " @@ -3980,6 +4002,16 @@ msgstr "" "Sie sind Entwickler? [Registrieren einer OAuth-Client-Anwendung] (%s), um " "mit dieser Instanz von StatusNet zu verwenden." +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "API-Methode nicht gefunden." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "API-Methode nicht gefunden." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Nachricht hat kein Profil" @@ -3989,6 +4021,16 @@ msgstr "Nachricht hat kein Profil" msgid "%1$s's status on %2$s" msgstr "Status von %1$s auf %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Empfänger nicht gefunden." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4078,17 +4120,21 @@ msgstr "Login-Token ungültig oder abgelaufen." msgid "Login token expired." msgstr "Zugangstoken ist abgelaufen." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Postausgang für %1$s - Seite %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Postausgang von %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "Das hier ist dein Postausgang, er beinhaltet deine gesendeten Nachrichten." @@ -4115,40 +4161,43 @@ msgstr "Altes Passwort" msgid "New password" msgstr "Neues Passwort" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +msgid "6 or more characters." msgstr "6 oder mehr Zeichen" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +msgid "Same as password above." msgstr "Gleiches Passwort wie zuvor" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Ändern" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Das Passwort muss aus 6 oder mehr Zeichen bestehen." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Passwörter stimmen nicht überein." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Altes Passwort falsch" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Fehler beim Speichern des Benutzers, ungültig." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Konnte neues Passwort nicht speichern" -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Passwort gespeichert." @@ -4476,14 +4525,14 @@ msgid "Profile information" msgstr "Profilinformation" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen." #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4491,13 +4540,13 @@ msgstr "Bürgerlicher Name" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Homepage" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site." msgstr "" "URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen " @@ -4506,7 +4555,7 @@ msgstr "" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4514,28 +4563,29 @@ msgstr[0] "Beschreibe dich selbst und deine Interessen in einem Zeichen" msgstr[1] "Beschreibe dich selbst und deine Interessen in %d Zeichen" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Beschreibe dich selbst und deine Interessen" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Biografie" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Aufenthaltsort" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Wo du bist, beispielsweise „Stadt, Region, Land“" @@ -4554,8 +4604,10 @@ msgstr "Tags" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Tags über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas oder " "Leerzeichen getrennt" @@ -4567,7 +4619,8 @@ msgstr "Sprache" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Bevorzugte Sprache" #. TRANS: Dropdownlist label in form for profile settings. @@ -4582,8 +4635,9 @@ msgstr "In welcher Zeitzone befindest du dich üblicherweise?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Abonniere automatisch alle Kontakte, die mich abonnieren (sinnvoll für Nicht-" "Menschen)" @@ -4591,7 +4645,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4610,9 +4664,9 @@ msgstr "Die eingegebene Sprache ist zu lang (maximal 50 Zeichen)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Ungültiges Stichwort: „%s“" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4859,6 +4913,12 @@ msgstr "Stelle Passwort wieder her" msgid "Password recovery requested" msgstr "Wiederherstellung des Passworts angefordert" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Passwort gespeichert." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4870,11 +4930,6 @@ msgstr "Unbekannter Befehl" msgid "6 or more characters, and do not forget it!" msgstr "6 oder mehr Zeichen, und nicht vergessen!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -msgid "Same as password above." -msgstr "Gleiches Passwort wie zuvor" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4926,14 +4981,8 @@ msgstr "Passwort muss mehr als 6 Zeichen enthalten." msgid "Password and confirmation do not match." msgstr "Passwort und seine Bestätigung stimmen nicht überein." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Konnte neues Passwort nicht speichern" - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Fehler bei den Benutzereinstellungen." @@ -4942,97 +4991,96 @@ msgstr "Fehler bei den Benutzereinstellungen." msgid "New password successfully saved. You are now logged in." msgstr "Neues Passwort erfolgreich gespeichert. Du bist jetzt angemeldet." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Es tut uns leid, zum Registrieren benötigst du eine Einladung." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Entschuldigung, ungültiger Einladungscode." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Registrierung erfolgreich" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Registrieren" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Registrierung nicht erlaubt." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "" "Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Diese E-Mail-Adresse existiert bereits." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Benutzername oder Passwort falsch." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "Hier kannst du einen neuen Zugang einrichten. Anschließend kannst du " "Nachrichten und Links mit deinen Freunden und Kollegen teilen. " -#: actions/register.php:437 -msgid "6 or more characters." -msgstr "6 oder mehr Zeichen" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-Mail" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "" "Wird nur für Updates, wichtige Mitteilungen und zur " "Passwortwiederherstellung verwendet" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Längerer Name, bevorzugt dein bürgerlicher Name" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "" -"URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen " -"Website" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Wo du bist, beispielsweise „Stadt, Region, Land“" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" "Mir ist bewusst, dass Inhalte und Daten von %1$s privat und vertraulich sind." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "Meine Texte und Dateien sind urheberrechtlich geschützt durch %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "Meine Texte und Dateien verbleiben unter meinem eigenen Urheberrecht." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Alle Rechte vorbehalten." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5041,7 +5089,7 @@ msgstr "" "Abgesehen von den folgenden Daten: Passwort, E-Mail-Adresse, IM-Adresse und " "Telefonnummer, sind all meine Texte und Dateien unter %s verfügbar." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5074,7 +5122,7 @@ msgstr "" "\n" "Danke für deine Anmeldung, wir hoffen, dass dir der Service gefällt." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5107,7 +5155,8 @@ msgid "User nickname" msgstr "Benutzername" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Name des Benutzers, dem du folgen möchtest" #: actions/remotesubscribe.php:132 @@ -5115,7 +5164,8 @@ msgid "Profile URL" msgstr "Profil-URL" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "Profil-URL bei einem anderen kompatiblen Mikrobloggingdienst" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5125,7 +5175,8 @@ msgid "Subscribe" msgstr "Abonnieren" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "Ungültige Profil-URL (falsches Format)" #: actions/remotesubscribe.php:167 @@ -5327,7 +5378,7 @@ msgstr "Du kannst die Rollen von Benutzern dieser Seite nicht widerrufen." msgid "User doesn't have this role." msgstr "Benutzer verfügt nicht über diese Rolle." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5369,87 +5420,87 @@ msgstr "Fehleruntersuchung für Sitzungen aktivieren" msgid "Save site settings" msgstr "Website-Einstellungen speichern" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Du musst angemeldet sein, um dieses Programm zu betrachten." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Anwendungsprofil" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Symbol" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Name" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisation" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Beschreibung" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Statistik" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "Erstellt von %1$s - %2$s Standard Zugang - %3$d Benutzer" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Programmaktionen" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Schlüssel zurücksetzen" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Löschen" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Programminformation" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Anwender-Schlüssel" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Anwender-Geheimnis" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "Anfrage-Token Adresse" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "Zugriffs-Token-Adresse" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "Autorisationadresse" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5457,7 +5508,7 @@ msgstr "" "Hinweis: Wir unterstützen HMAC-SHA1-Signaturen. Wir unterstützen keine " "Klartext-Signaturen." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "Bist du sicher, dass du den Schlüssel zurücksetzen willst?" @@ -5550,16 +5601,18 @@ msgid "Group profile" msgstr "Gruppenprofil" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Nachricht" @@ -5704,7 +5757,7 @@ msgid "%1$s tagged %2$s" msgstr "Von „%1$s“ mit „%2$s“ getaggte Nachrichten" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5955,7 +6008,8 @@ msgstr "Systembenachrichtigung (maximal 255 Zeichen; HTML erlaubt)" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Systemnachricht speichern" #. TRANS: Title for SMS settings. @@ -6013,7 +6067,8 @@ msgstr "SMS-Telefonnummer" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Telefonnummer, keine Sonder- oder Leerzeichen mit Vorwahl" #. TRANS: Form legend for SMS preferences form. @@ -6350,8 +6405,9 @@ msgstr "Tag „%s“" msgid "User profile" msgstr "Benutzerprofil" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Foto" @@ -6368,6 +6424,11 @@ msgstr "" "Tags dieses Benutzers (Buchstaben, Nummer, -, ., und _), durch Komma oder " "Leerzeichen getrennt" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Ungültiges Stichwort: „%s“" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6405,7 +6466,7 @@ msgstr "Keine Profil-ID in der Anfrage." msgid "Unsubscribed" msgstr "Abbestellt" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6437,8 +6498,8 @@ msgstr "Willkommens-Nachricht ungültig. Maximale Länge sind 255 Zeichen." #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 -#, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +#, fuzzy, php-format +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Ungültiges Standard-Abonnement: „%1$s“ ist kein Benutzer." #. TRANS: Link description in user account settings menu. @@ -6498,55 +6559,71 @@ msgstr "Ist es Benutzern erlaubt, neue Benutzer einzuladen." #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "Benutzer-Einstellungen speichern" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Abonnement bestätigen" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten " "dieses Benutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " "„Abbrechen“." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Lizenz" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Akzeptieren" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Abonniere diesen Benutzer" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Ablehnen" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Abonnement ablehnen" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Keine Bestätigungsanfrage!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Abonnement autorisiert" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6556,11 +6633,12 @@ msgstr "" "Lies nochmal die Anweisungen auf der Seite wie Abonnements bestätigt werden. " "Dein Abonnement-Token ist:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Abonnement abgelehnt" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6570,39 +6648,64 @@ msgstr "" "zurückgegeben. Lies nochmal die Anweisungen der Seite, wie Abonnements " "vollständig abgelehnt werden. Dein Abonnement-Token ist:" -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "Eine Listener-URI „%s“ wurde hier nicht gefunden." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "Die URI „%s“ für den Stream ist zu lang." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "Die URI „%s“ für den Stream ist ein lokaler Benutzer." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "Profiladresse „%s“ ist für einen lokalen Benutzer." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"Die Benutzerlizenz „%1$s“ ist nicht kompatibel mit der Lizenz der Seite „%2" +"$s“." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "Avataradresse „%s“ ist nicht gültig." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Konnte Avatar-URL nicht öffnen „%s“" -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Falscher Bildtyp für „%s“" #. TRANS: Page title for profile design page. @@ -7824,6 +7927,11 @@ msgstr "Passwort kann nicht geändert werden." msgid "Block" msgstr "Blockieren" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Diesen Benutzer blockieren" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8277,6 +8385,11 @@ msgstr "Programme mit Zugriffserlaubnis" msgid "Database error" msgstr "Datenbankfehler." +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Diesen Benutzer löschen" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8313,6 +8426,21 @@ msgstr "Farben ändern" msgid "Use defaults" msgstr "Standardeinstellungen benutzen" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Standard-Design wiederherstellen" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Standard wiederherstellen" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Design speichern" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8420,9 +8548,8 @@ msgid "Grant this user the \"%s\" role" msgstr "Teile dem Benutzer die „%s“-Rolle zu" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen." +msgstr "1-64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen" #: lib/groupeditform.php:156 msgid "URL of the homepage or blog of the group or topic." @@ -8433,7 +8560,7 @@ msgid "Describe the group or topic" msgstr "Beschreibe die Gruppe oder das Thema" #: lib/groupeditform.php:163 -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d character or less" msgid_plural "Describe the group or topic in %d characters or less" msgstr[0] "Beschreibe die Gruppe oder das Thema in einem Zeichen" @@ -9198,6 +9325,10 @@ msgstr "Auf diese Nachricht antworten" msgid "Reply" msgstr "Antworten" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Nachricht löschen" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Nachricht wiederholt" @@ -9477,6 +9608,10 @@ msgstr "Einladen" msgid "Invite friends and colleagues to join you on %s" msgstr "Lade Freunde und Kollegen ein, dir auf „%s“ zu folgen" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Abonniere diesen Benutzer" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9754,3 +9889,17 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "Hole Backup von der Datei „%s“." + +#~ msgid "6 or more characters" +#~ msgstr "6 oder mehr Zeichen" + +#~ msgid "Same as password above" +#~ msgstr "Gleiches Passwort wie zuvor" + +#~ msgid "Can't save new password." +#~ msgstr "Konnte neues Passwort nicht speichern" + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "" +#~ "URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen " +#~ "Website" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index d44b8dc215..67bb7959fc 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -13,17 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:05:31+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:10+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -155,7 +155,7 @@ msgstr "No such page." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -518,7 +518,8 @@ msgstr "Recipient user not found." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "Can't send direct messages to users who aren't your friend." #. TRANS: Client error displayed trying to direct message self (403). @@ -603,7 +604,7 @@ msgstr "Could not find target user." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Nickname already in use. Try another one." @@ -613,7 +614,7 @@ msgstr "Nickname already in use. Try another one." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Not a valid nickname." @@ -626,7 +627,7 @@ msgstr "Not a valid nickname." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "Homepage is not a valid URL." @@ -636,7 +637,7 @@ msgstr "Homepage is not a valid URL." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Full name is too long (max 255 chars)." @@ -665,7 +666,7 @@ msgstr[1] "Description is too long (max %d chars)" #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Location is too long (max 255 chars)." @@ -822,15 +823,15 @@ msgstr "You are not authorised." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "There was a problem with your session token. Try again, please." @@ -862,7 +863,7 @@ msgstr "Database error inserting OAuth application user." #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Unexpected form submission." @@ -914,19 +915,20 @@ msgstr "Account" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Nickname" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Password" @@ -1048,7 +1050,7 @@ msgstr "API method not found." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "Unsupported format." #. TRANS: Client error displayed requesting a deleted status. @@ -1226,25 +1228,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Find content of notices" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." @@ -1411,7 +1414,7 @@ msgid "Not a member." msgstr "All members" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Could not delete self-subscription." @@ -1516,9 +1519,11 @@ msgstr "You can upload your personal avatar. The maximum file size is %s." #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "User without matching profile." @@ -1576,9 +1581,10 @@ msgstr "Crop" msgid "No file uploaded." msgstr "No file uploaded." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Pick a square area of the image to be your avatar" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1638,7 +1644,7 @@ msgstr "Background" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1679,7 +1685,8 @@ msgstr "No" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Do not block this user" #. TRANS: Button label on the user block form. @@ -1696,9 +1703,9 @@ msgid "Yes" msgstr "Yes" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Block this user" #. TRANS: Server error displayed when blocking a user fails. @@ -1863,7 +1870,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Confirm" @@ -1893,13 +1900,13 @@ msgstr "Application not found." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "You are not the owner of this application." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "There was a problem with your session token." @@ -1923,12 +1930,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Do not delete this application" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Delete this application" #. TRANS: Client error when trying to delete group while not logged in. @@ -1982,12 +1991,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "Do not delete this group" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "Delete this group" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2030,12 +2041,14 @@ msgstr "Are you sure you want to delete this notice?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Do not delete this notice" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Delete this notice" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2072,13 +2085,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "Do not delete this group" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Delete this user" #. TRANS: Message used as title for design settings for the site. @@ -2244,21 +2257,21 @@ msgid "Use defaults" msgstr "Use defaults" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Restore default designs" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Reset back to default" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Save design" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2290,7 +2303,7 @@ msgid "You must be logged in to edit an application." msgstr "You must be logged in to edit an application." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "No such application." @@ -2571,7 +2584,7 @@ msgid "Cannot normalize that email address." msgstr "Cannot normalise that e-mail address" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Not a valid e-mail address." @@ -2647,19 +2660,22 @@ msgstr "No incoming e-mail address." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Couldn't update user record." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Incoming e-mail address removed." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "New incoming e-mail address added." @@ -2670,7 +2686,8 @@ msgstr "This notice is already a favourite!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Disfavor favourite" #. TRANS: Page title for first page of favorited notices. @@ -2910,12 +2927,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Do not block this user from this group" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Block this user from this group" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3243,7 +3262,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Publish a MicroID for my Jabber/GTalk address." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Preferences saved." @@ -3659,39 +3679,39 @@ msgstr "Save" msgid "Save license settings" msgstr "" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Already logged in." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Incorrect username or password." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "Error setting user. You are probably not authorised." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Login" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Login to site" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Remember me" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "Automatically login in the future; not for shared computers!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Lost or forgotten password?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3699,11 +3719,11 @@ msgstr "" "For security reasons, please re-enter your user name and password before " "changing your settings." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Login with your username and password." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3916,30 +3936,30 @@ msgid "You have not registered any applications yet." msgstr "You have not registered any applications yet." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Connected applications" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "You are not a user of that application." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "Use this form to edit your application." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3947,20 +3967,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "You have not authorised any applications to use your account." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "API method not found." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "API method not found." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Notice has no profile." @@ -3970,6 +4000,16 @@ msgstr "Notice has no profile." msgid "%1$s's status on %2$s" msgstr "%1$s's status on %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Recipient user not found." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4060,17 +4100,21 @@ msgstr "Invalid login token specified." msgid "Login token expired." msgstr "Login token expired." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Outbox for %1$s - page %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Outbox for %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "This is your outbox, which lists private messages you have sent." @@ -4096,40 +4140,45 @@ msgstr "Old password" msgid "New password" msgstr "New password" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 or more characters" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "Same as password above" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Change" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Password must be 6 or more characters." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Passwords don't match." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Incorrect old password" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Error saving user; invalid." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Can't save new password." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Password saved." @@ -4462,7 +4511,7 @@ msgid "Profile information" msgstr "Profile information" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 lowercase letters or numbers, no punctuation or spaces" @@ -4470,7 +4519,7 @@ msgstr "1-64 lowercase letters or numbers, no punctuation or spaces" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4478,13 +4527,13 @@ msgstr "Full name" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Homepage" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "URL of your homepage, blog, or profile on another site" @@ -4492,7 +4541,7 @@ msgstr "URL of your homepage, blog, or profile on another site" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4500,28 +4549,29 @@ msgstr[0] "Describe yourself and your interests in %d chars" msgstr[1] "Describe yourself and your interests in %d chars" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Describe yourself and your interests" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Bio" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Location" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Where you are, like \"City, State (or Region), Country\"" @@ -4540,8 +4590,10 @@ msgstr "Tags" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" @@ -4552,7 +4604,8 @@ msgstr "Language" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Preferred language" #. TRANS: Dropdownlist label in form for profile settings. @@ -4567,15 +4620,16 @@ msgstr "In which timezone are you?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4595,9 +4649,9 @@ msgstr "Language is too long (max 50 chars)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Invalid tag: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4840,6 +4894,12 @@ msgstr "Recover password" msgid "Password recovery requested" msgstr "Password recovery requested" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Password saved." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4851,12 +4911,6 @@ msgstr "Unknown action" msgid "6 or more characters, and do not forget it!" msgstr "6 or more characters, and don't forget it!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "Same as password above" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4910,14 +4964,8 @@ msgstr "Password must be 6 chars or more." msgid "Password and confirmation do not match." msgstr "Password and confirmation do not match." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Can't save new password." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Error setting user." @@ -4926,90 +4974,89 @@ msgstr "Error setting user." msgid "New password successfully saved. You are now logged in." msgstr "New password successfully saved. You are now logged in." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Sorry, only invited people can register." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Sorry, invalid invitation code." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Registration successful" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Register" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Registration not allowed." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "You can't register if you don't agree to the licence." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "E-mail address already exists." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Invalid username or password." -#: actions/register.php:351 +#: actions/register.php:340 msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 or more characters" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "Used only for updates, announcements, and password recovery" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Longer name, preferably your \"real\" name" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL of your homepage, blog, or profile on another site" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Where you are, like \"City, State (or Region), Country\"" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5018,7 +5065,7 @@ msgstr "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5051,7 +5098,7 @@ msgstr "" "\n" "Thanks for signing up and we hope you enjoy using this service." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5083,7 +5130,8 @@ msgid "User nickname" msgstr "User nickname" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Nickname of the user you want to follow" #: actions/remotesubscribe.php:132 @@ -5091,7 +5139,8 @@ msgid "Profile URL" msgstr "Profile URL" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "URL of your profile on another compatible microblogging service" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5101,7 +5150,8 @@ msgid "Subscribe" msgstr "Subscribe" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "Invalid profile URL (bad format)" #: actions/remotesubscribe.php:167 @@ -5297,7 +5347,7 @@ msgstr "You cannot revoke user roles on this site." msgid "User doesn't have this role." msgstr "User doesn't have this role." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5339,93 +5389,93 @@ msgstr "" msgid "Save site settings" msgstr "Save site settings" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "You must be logged in to view an application." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Application profile" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Name" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organization" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Description" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Statistics" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Application actions" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Delete" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Application information" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "Authorise URL" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "Are you sure you want to reset your consumer key and secret?" @@ -5517,16 +5567,18 @@ msgid "Group profile" msgstr "Group profile" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Note" @@ -5673,7 +5725,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s, page %2$d" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5914,7 +5966,8 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Save site notice" #. TRANS: Title for SMS settings. @@ -5972,7 +6025,8 @@ msgstr "SMS phone number" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Phone number, no punctuation or spaces, with area code" #. TRANS: Form legend for SMS preferences form. @@ -6303,8 +6357,9 @@ msgstr "Tag %s" msgid "User profile" msgstr "User profile" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Photo" @@ -6321,6 +6376,11 @@ msgstr "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Invalid tag: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6355,7 +6415,7 @@ msgstr "No profile ID in request." msgid "Unsubscribed" msgstr "Unsubscribed" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6387,7 +6447,7 @@ msgstr "" #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" #. TRANS: Link description in user account settings menu. @@ -6448,55 +6508,71 @@ msgstr "" #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" -msgstr "" +#, fuzzy +msgid "Save user settings." +msgstr "Save site settings" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Authorise subscription" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " "click “Reject”." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "License" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Accept" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Subscribe to this user" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Reject" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Reject this subscription" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "No authorisation request!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Subscription authorised" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6506,11 +6582,12 @@ msgstr "" "with the site’s instructions for details on how to authorize the " "subscription. Your subscription token is:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Subscription rejected" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6520,39 +6597,63 @@ msgstr "" "with the site’s instructions for details on how to fully reject the " "subscription." -#: actions/userauthorization.php:303 +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 #, php-format -msgid "Listener URI ‘%s’ not found here." +msgid "Listener URI \"%s\" not found here." msgstr "" -#: actions/userauthorization.php:308 +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." +msgstr "Source URL is too long." + +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 #, php-format -msgid "Listenee URI ‘%s’ is too long." +msgid "Listenee URI \"%s\" is a local user." msgstr "" -#: actions/userauthorization.php:314 +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 #, php-format -msgid "Listenee URI ‘%s’ is a local user." +msgid "Profile URL \"%s\" is for a local user." msgstr "" -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "Avatar URL ‘%s’ is not valid." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Can’t read avatar URL ‘%s’." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Wrong image type for avatar URL ‘%s’." #. TRANS: Page title for profile design page. @@ -7748,6 +7849,11 @@ msgstr "Password changing is not allowed." msgid "Block" msgstr "Block" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Block this user" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8194,6 +8300,11 @@ msgstr "Authorised connected applications" msgid "Database error" msgstr "" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Delete this user" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8231,6 +8342,21 @@ msgstr "Change colours" msgid "Use defaults" msgstr "Use defaults" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Restore default designs" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Reset back to default" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Save design" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8338,7 +8464,6 @@ msgid "Grant this user the \"%s\" role" msgstr "" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 lowercase letters or numbers, no punctuation or spaces" @@ -9023,6 +9148,10 @@ msgstr "Reply to this notice" msgid "Reply" msgstr "Reply" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Delete this notice" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Notice repeated" @@ -9304,6 +9433,10 @@ msgstr "Invite" msgid "Invite friends and colleagues to join you on %s" msgstr "Invite friends and colleagues to join you on %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Subscribe to this user" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9573,3 +9706,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6 or more characters" + +#~ msgid "Same as password above" +#~ msgstr "Same as password above" + +#~ msgid "Can't save new password." +#~ msgstr "Can't save new password." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "URL of your homepage, blog, or profile on another site" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 85d2fb32e5..6253bc381a 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -17,17 +17,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:05:33+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:11+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -159,7 +159,7 @@ msgstr "Ne estas tiu paĝo." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -523,7 +523,8 @@ msgstr "Ricevonta uzanto ne troviĝas." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "Vi ne povas sendi rektan mesaĝon al uzanto kiu ne estas via amiko." #. TRANS: Client error displayed trying to direct message self (403). @@ -606,7 +607,7 @@ msgstr "Malsukcesis trovi celan uzanton." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "La uzantnomo jam uziĝis. Provu ion alian." @@ -616,7 +617,7 @@ msgstr "La uzantnomo jam uziĝis. Provu ion alian." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Ne valida kromnomo." @@ -629,7 +630,7 @@ msgstr "Ne valida kromnomo." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "Ĉefpaĝo ne estas valida URL." @@ -639,7 +640,7 @@ msgstr "Ĉefpaĝo ne estas valida URL." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "Kompleta nomo tro longas (maksimume 255 signoj)" @@ -667,7 +668,7 @@ msgstr[1] "Priskribo estas tro longa (maksimume %d signoj)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "Lokonomo tro longas (maksimume 255 signoj)" @@ -822,15 +823,15 @@ msgstr "" #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "Estis problemo pri via seanco. Bonvolu provi refoje." @@ -862,7 +863,7 @@ msgstr "Datumbaza eraro enigi la uzanton de *OAuth-aplikaĵo." #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Neatendita formo-sendo." @@ -913,19 +914,20 @@ msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Kromnomo" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Pasvorto" @@ -1049,7 +1051,7 @@ msgstr "Metodo de API ne troviĝas." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "Formato ne subtenata." #. TRANS: Client error displayed requesting a deleted status. @@ -1229,25 +1231,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Serĉi enhavon ĉe la retejo" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." @@ -1415,7 +1418,7 @@ msgid "Not a member." msgstr "Ne estas ano." #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Ne eblas forigi abonon al vi mem." @@ -1520,9 +1523,11 @@ msgstr "Vi povas alŝuti vian personan vizaĝbildon. Dosiero-grandlimo estas %s. #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Uzanto sen egala profilo." @@ -1580,9 +1585,10 @@ msgstr "Tranĉi" msgid "No file uploaded." msgstr "Neniu dosiero alŝutiĝas." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Elektu kvadratan parton de la bildo kiel via vizaĝbildo" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1642,7 +1648,7 @@ msgstr "Fono" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1682,7 +1688,8 @@ msgstr "Ne" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Ne bloki la uzanton" #. TRANS: Button label on the user block form. @@ -1699,9 +1706,9 @@ msgid "Yes" msgstr "Jes" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Bloki la uzanton" #. TRANS: Server error displayed when blocking a user fails. @@ -1866,7 +1873,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Konfirmi" @@ -1896,13 +1903,13 @@ msgstr "Aplikaĵo ne trovita." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Vi ne estas la posedanto de ĉi tiu aplikaĵo." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Problemo okazas pri via seancĵetono." @@ -1925,12 +1932,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Ne forigu ĉi tiun aplikaĵon." #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Viŝi ĉi tiun aplikon" #. TRANS: Client error when trying to delete group while not logged in. @@ -1988,13 +1997,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 #, fuzzy -msgid "Do not delete this group" +msgid "Do not delete this group." msgstr "Ne forigi la avizon" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 #, fuzzy -msgid "Delete this group" +msgid "Delete this group." msgstr "Forigi la uzanton" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2036,12 +2045,14 @@ msgstr "Ĉu vi certe volas forigi la avizon?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Ne forigi la avizon" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Forigi la avizon" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2078,13 +2089,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "Ne forigi la avizon" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Forigi la uzanton" #. TRANS: Message used as title for design settings for the site. @@ -2250,21 +2261,21 @@ msgid "Use defaults" msgstr "Uzu defaŭlton" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Restaŭri defaŭltajn desegnojn" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Redefaŭltiĝi" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Savi desegnon" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2296,7 +2307,7 @@ msgid "You must be logged in to edit an application." msgstr "Ensalutu por redakti la aplikaĵon." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Ne estas tia aplikaĵo." @@ -2577,7 +2588,7 @@ msgid "Cannot normalize that email address." msgstr "Malsukcesis normigi tiun retpoŝtadreson" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Retpoŝta adreso ne valida" @@ -2653,19 +2664,22 @@ msgstr "Ne estas alvena retpoŝtadreso" #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Malsukcesis ĝisdatigi uzantan informon." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Alvena retpoŝtadreso forigita." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Nova alvena retpoŝtadreso aldonita." @@ -2676,7 +2690,8 @@ msgstr "Ĉi tiu avizo jam estas ŝatata." #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Malŝati ŝataton." #. TRANS: Page title for first page of favorited notices. @@ -2914,12 +2929,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Ne bloki la uzanton de la grupo" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Bloki la uzanton de la grupo" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3245,7 +3262,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Publikigu MikroID por mia Jabber/GTalk-adreso." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Prefero konservita." @@ -3658,39 +3676,39 @@ msgstr "Konservi" msgid "Save license settings" msgstr "" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Vi jam ensalutis." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Malĝusta uzantnomo aŭ pasvorto." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "Eraras agordi uzanton. Vi verŝajne ne rajtiĝas." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Ensaluti" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Ensaluti al la retejo" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Memoru min" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "Aŭtomate ensaluti estonte; ne taŭge por komuna komputilo!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Ĉi via pasvorto perdiĝas?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3698,11 +3716,11 @@ msgstr "" "Por sekureca kialo, bonvole re-entajpi vian uzantnomon kaj pasvorton antaŭ " "ŝanĝi vian agordon." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Ensaluti per via uzantnomo kaj pasvorto." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3913,30 +3931,30 @@ msgid "You have not registered any applications yet." msgstr "Vi ankoraŭ neniun aplikaĵon registris." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Konektita aplikaĵo" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Mi ne estas uzanto de tiu aplikaĵo." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "Maleble revoki aliradon al aplikaĵo: %s." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3944,20 +3962,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "Vi ne rajtigis iun ajn aplikaĵon uzi vian konton." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "Metodo de API ne troviĝas." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "Metodo de API ne troviĝas." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Avizo sen profilo" @@ -3967,6 +3995,16 @@ msgstr "Avizo sen profilo" msgid "%1$s's status on %2$s" msgstr "Stato de %1$s ĉe %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Ricevonta uzanto ne troviĝas." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4057,17 +4095,21 @@ msgstr "Specifita ensalutado-ĵetono nevalidas." msgid "Login token expired." msgstr "Ensalutado-ĵetono eksvalidiĝas." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "elirkesto de %1$s - paĝo %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Elirkesto de %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "Tio ĉi estas via elirkesto, kie listiĝas privataj mesaĝoj, kiujn vi sendis." @@ -4094,40 +4136,45 @@ msgstr "Malnova pasvorto" msgid "New password" msgstr "Nova pasvorto" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 aŭ pli da literoj" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "Same kiel pasvorto supra" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Ŝanĝi" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Pasvorto devas esti 6-litera aŭ pli longa." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "La pasvortoj diferencas." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Neĝusta malnova pasvorto" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Eraris konservi uzanton: nevalida." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Malsukcesis konservi novan pasvorton." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Pasvorto konservitas." @@ -4453,7 +4500,7 @@ msgid "Profile information" msgstr "Profila informo" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 minusklaj literoj aŭ ciferoj, neniu interpunkcio aŭ spaco" @@ -4461,7 +4508,7 @@ msgstr "1-64 minusklaj literoj aŭ ciferoj, neniu interpunkcio aŭ spaco" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4469,13 +4516,13 @@ msgstr "Plena nomo" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Hejmpaĝo" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "URL de via hejmpaĝo, blogo aŭ profilo ĉe alia retejo" @@ -4483,7 +4530,7 @@ msgstr "URL de via hejmpaĝo, blogo aŭ profilo ĉe alia retejo" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4491,28 +4538,29 @@ msgstr[0] "Priskribu vin mem kaj viajn ŝatokupojn per ne pli ol %d signoj" msgstr[1] "Priskribu vin mem kaj viajn ŝatokupojn per ne pli ol %d signoj" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Priskribu vin mem kaj viajn ŝatokupojn" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Biografio" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Loko" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Kie vi estas, ekzemple \"Urbo, Ŝtato (aŭ Regiono), Lando\"" @@ -4531,8 +4579,10 @@ msgstr "Markiloj" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Markiloj por vi mem (literoj, ciferoj, \"-\", \".\", kaj \"_\"), dividite " "per komoj aŭ spacoj" @@ -4544,7 +4594,8 @@ msgstr "Lingvo" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Preferata lingvo" #. TRANS: Dropdownlist label in form for profile settings. @@ -4559,14 +4610,15 @@ msgstr "En kiu horzono vi kutime troviĝas?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "Aŭtomate aboni iun ajn, kiu abonas min (prefereble por ne-homoj)" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4586,9 +4638,9 @@ msgstr "Lingvo tro longas (maksimume 50 literoj)" #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Nevalida markilo: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4828,6 +4880,12 @@ msgstr "Refari pasvorton" msgid "Password recovery requested" msgstr "Petiĝas pasvorton rehavado" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Pasvorto konservitas." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4839,12 +4897,6 @@ msgstr "Nekonata ago" msgid "6 or more characters, and do not forget it!" msgstr "Almenaŭ 6 signoj, kaj ne forgesu ĝin!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "Same kiel pasvorto supra" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4898,14 +4950,8 @@ msgstr "Pasvorto devas enhavi 6 signojn aŭ pli." msgid "Password and confirmation do not match." msgstr "Pasvorto kaj komfirmo ne kongruas." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Malsukcesis konservi novan pasvorton." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Eraris agordi uzanton." @@ -4914,93 +4960,93 @@ msgstr "Eraris agordi uzanton." msgid "New password successfully saved. You are now logged in." msgstr "Nova pasvorto sukcese konserviĝas. Vi nun estas ensalutinta." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Pardonon, nur invito rajtas registri." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Pardonon, nevalida invitkodo." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Registriĝo sukcesa" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Registri" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Registriĝo ne permesita." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Vi ne povas registriĝi, se vi ne konsentas kun la permesilo." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Retpoŝta adreso jam ekzistas." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Nevalida uzantnomo aŭ pasvorto." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "Per tiu ĉi formularo vi povas krei novan konton. Poste povos vi afiŝi avizon " "kaj komuniki kun amikoj kaj kolegoj. " -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 aŭ pli da literoj" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Retpoŝto" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "Uzu nur por ĝisdatigo, anonco, kaj rehavi pasvorton." -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Pli longa nomo, prefere via \"vera\" nomo." -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL de via hejmpaĝo, blogo aŭ profilo ĉe alia retejo" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Kie vi estas, ekzemple \"Urbo, Ŝtato (aŭ Regiono), Lando\"" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" "Mi komprenas ke enhavo kaj datumo de %1$s estas privataj kaj sekretigita." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "Mia teksto kaj dosiero estas aŭtorrajtigita de %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "Mia teksto kaj dosiero restu en mia propra aŭtorrajto." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Ĉiuj rajtoj rezervitaj." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5009,7 +5055,7 @@ msgstr "" "Mia teksto kaj dosiero estas atingebla per %s krom jene: pasvorto, " "retpoŝtadreso, tujmesaĝilo-adreso, kaj telefonnumero." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5041,7 +5087,7 @@ msgstr "" "\n" "Dankon pro registriĝo, kaj ni esperas al vi ĝuon de uzi ĉi servon." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5072,7 +5118,8 @@ msgid "User nickname" msgstr "Uzanta alinomo" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Alnomo de la uzanto, kiun vi volas aboni." #: actions/remotesubscribe.php:132 @@ -5080,7 +5127,8 @@ msgid "Profile URL" msgstr "Profila URL" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "URL de via profilo ĉe alia kongrua mikroblogilo-servo" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5090,7 +5138,8 @@ msgid "Subscribe" msgstr "Aboni" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "Nevalida profila URL (fuŝa formato)" #: actions/remotesubscribe.php:167 @@ -5293,7 +5342,7 @@ msgstr "Vi ne rajtas revoki de uzanto rolon ĉe ĉi tiu retejo." msgid "User doesn't have this role." msgstr "La uzanto ne havas la rolon." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5335,87 +5384,87 @@ msgstr "Ŝalti sencimigadan eligon por seanco." msgid "Save site settings" msgstr "Konservi retejan agordon" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Ensalutu por vidi la aplikaĵon." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Aplikaĵa profilo" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Bildsimbolo" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Nomo" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organizaĵo" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Priskribo" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Statistiko" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "Kreita de %1$s - %2$s defaŭlta aliroj - %3$d uzantoj" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Aplikaĵa ago" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Rekomencigi ŝlosilon & sekreton" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Forigi" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Aplikaĵa informo" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Konsumanta ŝlosilo" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Konsumanta sekreto" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "Pet-ĵetona URL" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "Alir-ĵetona URL" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "Rajtigi URL" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5423,7 +5472,7 @@ msgstr "" "Rimarku: Ni subtenas HMAC-SHA1-subskribo. Ni ne subtenas platteksta " "subskribado-metodon." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "Ĉu vi certe volas rekomencigi vian konsumantan ŝlosilon kaj sekreton?" @@ -5513,16 +5562,18 @@ msgid "Group profile" msgstr "Grupa profilo" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Noto" @@ -5668,7 +5719,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s, paĝo %2$d" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5913,7 +5964,8 @@ msgstr "Teksto de reteja anonco (apenaŭ 255 literoj; HTML eblas)" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Konservi retejan agordon" #. TRANS: Title for SMS settings. @@ -5971,7 +6023,8 @@ msgstr "SMM-a telefonnumero" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Telefonnumero, sen interpunkcio aŭ spacoj, kun loka kodo" #. TRANS: Form legend for SMS preferences form. @@ -6304,8 +6357,9 @@ msgstr "Etikedo %s" msgid "User profile" msgstr "Uzanta profilo" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Foto" @@ -6322,6 +6376,11 @@ msgstr "" "Etikedoj por ĉi tiuj uzanto (literoj, ciferoj, -, . Kaj _), apartigu per " "komo aŭ spaco." +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Nevalida markilo: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6355,7 +6414,7 @@ msgstr "Neniu profila ID petiĝas." msgid "Unsubscribed" msgstr "Malabonita" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6388,7 +6447,7 @@ msgstr "Nevalida bonvena teksto. La longlimo estas 225 literoj." #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, fuzzy, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Nevalida defaŭlta abono: '%1$s' ne estas uzanto." #. TRANS: Link description in user account settings menu. @@ -6449,54 +6508,70 @@ msgstr "Ĉu permesi al uzantoj inviti novan uzantojn." #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" -msgstr "" +#, fuzzy +msgid "Save user settings." +msgstr "Konservi retejan agordon" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Rajtigi abonon" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Bonvolu kontroli la detalojn por certigi ĉu vi deziras aboni la avizoj de ĉi " "tiu uzanto. Se ne simple alklaku “Rifuzi\"." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Licenco" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Akcepti" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Aboni la uzanton" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Malakcepti" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Rifuzi la abonon" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Ne bezonas permesado!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Abono permesiĝis" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6505,11 +6580,12 @@ msgstr "" "La abono permesiĝis, sed ne pasiĝis revoka URL. Legu gvidon de la retejo pro " "detaloj pri kiel rajtigi abonon. Via abono-ĵetono jenas:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Abono rifuziĝis" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6518,39 +6594,63 @@ msgstr "" "La abono rifuziĝis sed ne pasiĝis revoka URL. Legu gvidon de la retejo pro " "detaloj pri kiel rajtigi abonon. Via abono-ĵetono jenas:" -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "URL de aboninto ‘%s’ ne troviĝas tie ĉi." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "URL de abonito ‘%s’ tro longas." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "URL de abonito ‘%s’ estas de loka uzanto." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "Profila URL ‘%s’ estas de loka uzanto." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"Rigardato-flua permesilo \"%1$s\" ne konformas al reteja permesilo \"%2$s\"." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "Vizaĝbilda URL ‘%s' ne estas valida." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Malsukcesis legi vizaĝbildan URL ‘%s’." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Malĝusta bildotipo por vizaĝbilda URL ‘%s'." #. TRANS: Page title for profile design page. @@ -7754,6 +7854,11 @@ msgstr "Ne estas permesita ŝanĝi la pasvorton" msgid "Block" msgstr "Bloki" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Bloki la uzanton" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8213,6 +8318,11 @@ msgstr "Konektitaj aplikaĵoj rajtigitaj" msgid "Database error" msgstr "Datumbaza eraro" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Forigi la uzanton" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8250,6 +8360,21 @@ msgstr "Ŝanĝi kolorojn" msgid "Use defaults" msgstr "Uzu defaŭlton" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Restaŭri defaŭltajn desegnojn" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Redefaŭltiĝi" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Savi desegnon" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8357,7 +8482,6 @@ msgid "Grant this user the \"%s\" role" msgstr "Donu al la uzanto rolon \"%s\"" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 minusklaj literoj aŭ ciferoj, neniu interpunkcio aŭ spaco" @@ -9133,6 +9257,10 @@ msgstr "Respondi ĉi tiun avizon" msgid "Reply" msgstr "Respondi" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Forigi la avizon" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Avizo ripetiĝas" @@ -9415,6 +9543,10 @@ msgstr "Inviti" msgid "Invite friends and colleagues to join you on %s" msgstr "Inviti amikojn kaj kolegojn al %s kun vi" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Aboni la uzanton" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9688,3 +9820,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6 aŭ pli da literoj" + +#~ msgid "Same as password above" +#~ msgstr "Same kiel pasvorto supra" + +#~ msgid "Can't save new password." +#~ msgstr "Malsukcesis konservi novan pasvorton." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "URL de via hejmpaĝo, blogo aŭ profilo ĉe alia retejo" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 2051709a58..7ffdc25e70 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -18,17 +18,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:05:44+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:13+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -160,7 +160,7 @@ msgstr "No existe tal página." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -524,7 +524,8 @@ msgstr "No se encuentra usuario receptor." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "No se puede enviar mensajes directos a usuarios que no son tu amigo." #. TRANS: Client error displayed trying to direct message self (403). @@ -609,7 +610,7 @@ msgstr "No se pudo encontrar ningún usuario de destino." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "El usuario ya existe. Prueba con otro." @@ -619,7 +620,7 @@ msgstr "El usuario ya existe. Prueba con otro." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Usuario inválido" @@ -632,7 +633,7 @@ msgstr "Usuario inválido" #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "La página de inicio no es un URL válido." @@ -642,7 +643,7 @@ msgstr "La página de inicio no es un URL válido." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Tu nombre es demasiado largo (max. 255 carac.)" @@ -671,7 +672,7 @@ msgstr[1] "La descripción es demasiado larga (máx. %d caracteres)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "La ubicación es demasiado larga (máx. 255 caracteres)." @@ -830,15 +831,15 @@ msgstr "No estás autorizado." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -871,7 +872,7 @@ msgstr "Error de base de datos al insertar usuario de la aplicación OAuth." #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Envío de formulario inesperado." @@ -922,19 +923,20 @@ msgstr "Cuenta" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Usuario" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contraseña" @@ -1058,7 +1060,7 @@ msgstr "Método de API no encontrado." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "Formato no soportado." #. TRANS: Client error displayed requesting a deleted status. @@ -1238,25 +1240,26 @@ msgid "Atom post must be an Atom entry." msgstr "La publicación Atom debe ser una entrada Atom." #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "No se puede gestionar actividad del tipo «%s»." #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, php-format msgid "No content for notice %d." msgstr "No hay contenido para el aviso %d." #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1418,7 +1421,7 @@ msgid "Not a member." msgstr "Todos los miembros" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "No se pudo eliminar la auto-suscripción." @@ -1523,9 +1526,11 @@ msgstr "Puedes subir tu imagen personal. El tamaño máximo de archivo es %s." #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Usuario sin perfil coincidente." @@ -1581,9 +1586,10 @@ msgstr "Cortar" msgid "No file uploaded." msgstr "Ningún archivo fue subido." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Elige un área cuadrada para que sea tu imagen" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1643,7 +1649,7 @@ msgstr "Fondo" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1684,7 +1690,8 @@ msgstr "No" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "No bloquear a este usuario" #. TRANS: Button label on the user block form. @@ -1701,9 +1708,9 @@ msgid "Yes" msgstr "Sí" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Bloquear este usuario." #. TRANS: Server error displayed when blocking a user fails. @@ -1871,7 +1878,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Confirmar" @@ -1900,13 +1907,13 @@ msgstr "Aplicación no encontrada." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "No eres el propietario de esta aplicación." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Hubo problemas con tu clave de sesión." @@ -1930,12 +1937,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "No eliminar esta aplicación" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Borrar esta aplicación" #. TRANS: Client error when trying to delete group while not logged in. @@ -1989,12 +1998,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "No eliminar este grupo" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "Borrar este grupo" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2037,12 +2048,14 @@ msgstr "¿Estás seguro de que quieres eliminar este aviso?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "No eliminar este mensaje" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Borrar este mensaje" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2077,13 +2090,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 -msgid "Do not delete this user" +#, fuzzy +msgid "Do not delete this user." msgstr "No eliminar este usuario" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Borrar este usuario" #. TRANS: Message used as title for design settings for the site. @@ -2247,21 +2261,21 @@ msgid "Use defaults" msgstr "Usar los valores predeterminados" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Restaurar los diseños predeterminados" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Volver a los valores predeterminados" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Guardar el diseño" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2293,7 +2307,7 @@ msgid "You must be logged in to edit an application." msgstr "Debes haber iniciado sesión para editar una aplicación." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "No existe tal aplicación." @@ -2577,7 +2591,7 @@ msgid "Cannot normalize that email address." msgstr "No se puede normalizar esta dirección de correo electrónico." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Correo electrónico no válido" @@ -2654,19 +2668,22 @@ msgstr "No hay dirección de correo entrante." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "No se pudo actualizar información de usuario." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Dirección de correo entrante removida." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Nueva dirección de correo entrante agregada." @@ -2677,7 +2694,8 @@ msgstr "¡Este mensaje ya está en favoritos!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Sacar favorito" #. TRANS: Page title for first page of favorited notices. @@ -2918,12 +2936,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "No bloquear este usuario de este grupo" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Bloquear este usuario de este grupo" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3256,7 +3276,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Publicar un MicroID para mi cuenta Jabber/GTalk." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Preferencias guardadas." @@ -3674,41 +3695,41 @@ msgstr "Guardar" msgid "Save license settings" msgstr "" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Ya estás conectado." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Nombre de usuario o contraseña incorrectos." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "Error al configurar el usuario. Posiblemente no tengas autorización." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Inicio de sesión" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Ingresar a sitio" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Recordarme" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Iniciar sesión automáticamente en el futuro. ¡No usar en ordenadores " "compartidos! " -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "¿Contraseña olvidada o perdida?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3716,11 +3737,11 @@ msgstr "" "Por razones de seguridad, por favor vuelve a escribir tu nombre de usuario y " "contraseña antes de cambiar tu configuración." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Ingresar con tu nombre de usuario y contraseña." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3936,30 +3957,30 @@ msgid "You have not registered any applications yet." msgstr "Aún no has registrado aplicación alguna." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Aplicaciones conectadas" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "No eres un usuario de esa aplicación." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "No se puede revocar el acceso para la aplicación: %s." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3967,20 +3988,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "No has autorizado a ninguna aplicación utilizar tu cuenta." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "Método de API no encontrado." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "Método de API no encontrado." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Mensaje sin perfil." @@ -3990,6 +4021,16 @@ msgstr "Mensaje sin perfil." msgid "%1$s's status on %2$s" msgstr "estado de %1$s en %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "No se encuentra usuario receptor." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4080,17 +4121,21 @@ msgstr "Token de acceso inválido especificado." msgid "Login token expired." msgstr "Token de acceso caducado." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Bandeja de salida de %1$s - página %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Bandeja de salida para %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "Ésta es tu bandeja de salida, incluye la lista de mensajes privados enviados." @@ -4117,40 +4162,45 @@ msgstr "Antigua contraseña" msgid "New password" msgstr "Nueva contraseña" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 o más caracteres" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "Igual a la contraseña de arriba" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Cambiar" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "La contraseña debe tener 6 o más caracteres." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Las contraseñas no coinciden" -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Contraseña antigua incorrecta." -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Error al guardar el usuario; inválido." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "No se puede guardar la nueva contraseña." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Se guardó la contraseña." @@ -4495,7 +4545,7 @@ msgid "Profile information" msgstr "Información del perfil" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" @@ -4504,7 +4554,7 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4512,13 +4562,13 @@ msgstr "Nombre completo" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Página de inicio" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "El URL de tu página de inicio, blog o perfil en otro sitio" @@ -4526,7 +4576,7 @@ msgstr "El URL de tu página de inicio, blog o perfil en otro sitio" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4534,28 +4584,29 @@ msgstr[0] "Descríbete y cuéntanos tus intereses en %d caracteres" msgstr[1] "Descríbete y cuéntanos tus intereses en %d caracteres" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Descríbete y cuéntanos acerca de tus intereses" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Biografía" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Ubicación" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Dónde estás, por ejemplo \"Ciudad, Estado (o Región), País\"" @@ -4574,8 +4625,10 @@ msgstr "Etiquetas" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Etiquetas para ti (letras, números, -, ., y _), separadas por comas o " "espacios" @@ -4587,7 +4640,8 @@ msgstr "Idioma" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Lenguaje de preferencia" #. TRANS: Dropdownlist label in form for profile settings. @@ -4602,8 +4656,9 @@ msgstr "En que zona horaria se encuentra normalmente?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Suscribirse automáticamente a quien quiera que se suscriba a mí (es mejor " "para no-humanos)" @@ -4611,7 +4666,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4631,9 +4686,9 @@ msgstr "Idioma es muy largo ( max 50 car.)" #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Etiqueta inválida: \"% s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4885,6 +4940,12 @@ msgstr "Recuperar contraseña" msgid "Password recovery requested" msgstr "Recuperación de contraseña solicitada" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Se guardó la contraseña." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4896,12 +4957,6 @@ msgstr "Acción desconocida" msgid "6 or more characters, and do not forget it!" msgstr "6 o más caracteres, ¡no te olvides!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "Igual a la contraseña de arriba" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4955,14 +5010,8 @@ msgstr "La contraseña debe tener 6 o más caracteres." msgid "Password and confirmation do not match." msgstr "La contraseña y la confirmación no coinciden." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "No se puede guardar la nueva contraseña." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Error al configurar el usuario." @@ -4971,95 +5020,95 @@ msgstr "Error al configurar el usuario." msgid "New password successfully saved. You are now logged in." msgstr "Nueva contraseña guardada correctamente. Has iniciado una sesión." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Disculpa, sólo personas invitadas pueden registrarse." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "El código de invitación no es válido." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Registro exitoso." -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Registrarse" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Registro de usuario no permitido." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "No puedes registrarte si no estás de acuerdo con la licencia." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "La dirección de correo electrónico ya existe." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Usuario o contraseña inválidos." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "Con este formulario puedes crear una nueva cuenta. Después podrás publicar " "avisos y enviar vínculos de ellos a tus amigos y colegas. " -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 o más caracteres" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Correo electrónico" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "" "Se usa sólo para actualizaciones, anuncios y recuperación de contraseñas" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Nombre más largo, preferiblemente tu nombre \"real\"" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "El URL de tu página de inicio, blog o perfil en otro sitio" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Dónde estás, por ejemplo \"Ciudad, Estado (o Región), País\"" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" "Entiendo que el contenido y los datos de %1$s son privados y confidenciales." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" "Mi texto y archivos est'an protegidos por los derecho de autor de %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "Mi texto y archivos permanecen bajo mi propio derecho de autor." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Todos los derechos reservados." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5069,7 +5118,7 @@ msgstr "" "información privada: contraseña, dirección de correo electrónico, dirección " "de mensajería instantánea y número de teléfono." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5102,7 +5151,7 @@ msgstr "" "\n" "¡Gracias por apuntarte! Esperamos que disfrutes usando este servicio." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5135,7 +5184,8 @@ msgid "User nickname" msgstr "Usuario" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Usuario a quien quieres seguir" #: actions/remotesubscribe.php:132 @@ -5143,7 +5193,8 @@ msgid "Profile URL" msgstr "URL del perfil" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "El URL de tu perfil en otro servicio de microblogueo compatible" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5153,7 +5204,8 @@ msgid "Subscribe" msgstr "Suscribirse" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "El URL del perfil es inválido (formato incorrecto)" #: actions/remotesubscribe.php:167 @@ -5356,7 +5408,7 @@ msgstr "No puedes revocar funciones de usuario en este sitio." msgid "User doesn't have this role." msgstr "El usuario no tiene esta función." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5398,87 +5450,87 @@ msgstr "Activar la salida de depuración para sesiones." msgid "Save site settings" msgstr "Guardar la configuración del sitio" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Tienes que haber iniciado sesión para poder ver aplicaciones." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Perfil de la aplicación" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Icono" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Nombre" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organización" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Descripción" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Estadísticas" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "Creado por %1$s - acceso predeterminado %2$s - %3$d usuarios" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Acciones de la aplicación" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Reiniciar clave y secreto" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Borrar" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Información de la aplicación" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Clave del consumidor" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Secreto del consumidor" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "URL del token de solicitud" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "URL del token de acceso" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "Autorizar URL" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5486,7 +5538,7 @@ msgstr "" "Nota: Nuestro sistema sólo es compatible con firmas HMAC-SHA1. No son " "compatibles las firmas de texto sin formato." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "¿realmente deseas reiniciar tu clave y secreto de consumidor?" @@ -5578,16 +5630,18 @@ msgid "Group profile" msgstr "Perfil del grupo" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Nota" @@ -5734,7 +5788,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s, página %2$s" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5986,7 +6040,8 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Guardar el mensaje del sitio" #. TRANS: Title for SMS settings. @@ -6045,7 +6100,8 @@ msgstr "Número de teléfono de SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Número telefónico, sin puntuación ni espacios, incluya código de área" #. TRANS: Form legend for SMS preferences form. @@ -6384,8 +6440,9 @@ msgstr "%s etiqueta" msgid "User profile" msgstr "Perfil de usuario" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Foto" @@ -6402,6 +6459,11 @@ msgstr "" "Etiquetas para este usuario (letras, números, -, ., y _), separadas por " "comas o espacios" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Etiqueta inválida: \"% s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6439,7 +6501,7 @@ msgstr "No hay id de perfil en solicitud." msgid "Unsubscribed" msgstr "Desuscrito" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6473,7 +6535,7 @@ msgstr "Texto de bienvenida inválido. La longitud máx. es de 255 caracteres." #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, fuzzy, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Suscripción predeterminada inválida : '%1$s' no es un usuario" #. TRANS: Link description in user account settings menu. @@ -6534,55 +6596,71 @@ msgstr "Si permitir a los usuarios invitar nuevos usuarios." #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" -msgstr "" +#, fuzzy +msgid "Save user settings." +msgstr "Guardar la configuración del sitio" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Autorizar la suscripción" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Por favor revisa estos detalles para asegurar que deseas suscribirte a los " "avisos de este usuario. Si no pediste suscribirte a los avisos de alguien, " "haz clic en \"Cancelar\"." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Licencia" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Aceptar" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Suscribirse a este usuario" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Rechazar" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Rechazar esta suscripción" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "¡Ninguna petición de autorización!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Suscripción autorizada" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6592,11 +6670,12 @@ msgstr "" "Consulte con las instrucciones del sitio para obtener detalles acerca de " "cómo autorizar la suscripción. Tu token de suscripción es:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Suscripción rechazada" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6606,39 +6685,64 @@ msgstr "" "de nuevo las instrucciones para saber cómo rechazar la suscripción " "completamente." -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "No se ha encontrado aquí el URI del oyente ‘%s’." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "El URI ‘%s’ del receptor es muy largo." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "El URI ‘%s’ del receptor es un usuario local." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "El URL ‘%s’ de perfil es para un usuario local." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"Licencia de flujo del emisor ‘%1$s’ es incompatible con la licencia del " +"sitio ‘%2$s’." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "La URL ‘%s’ de la imagen no es válida." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "No se puede leer la URL de la imagen ‘%s’." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Tipo de imagen incorrecto para la URL de imagen ‘%s’." #. TRANS: Page title for profile design page. @@ -7860,6 +7964,11 @@ msgstr "No está permitido cambiar la contraseña" msgid "Block" msgstr "Bloquear" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Bloquear este usuario." + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8320,6 +8429,11 @@ msgstr "Aplicaciones conectadas autorizadas" msgid "Database error" msgstr "Error de la base de datos" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Borrar este usuario" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8358,6 +8472,21 @@ msgstr "Cambiar colores" msgid "Use defaults" msgstr "Utilizar los valores predeterminados" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Restaurar los diseños predeterminados" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Volver a los valores predeterminados" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Guardar el diseño" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8465,7 +8594,6 @@ msgid "Grant this user the \"%s\" role" msgstr "Otorgar al usuario el papel de \"%$\"" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 letras en minúscula o números, sin signos de puntuación o espacios" @@ -9250,6 +9378,10 @@ msgstr "Responder a este mensaje." msgid "Reply" msgstr "Responder" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Borrar este mensaje" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Mensaje repetido" @@ -9531,6 +9663,10 @@ msgstr "Invitar" msgid "Invite friends and colleagues to join you on %s" msgstr "Invita a amigos y colegas a unirse a %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Suscribirse a este usuario" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9806,3 +9942,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6 o más caracteres" + +#~ msgid "Same as password above" +#~ msgstr "Igual a la contraseña de arriba" + +#~ msgid "Can't save new password." +#~ msgstr "No se puede guardar la nueva contraseña." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "El URL de tu página de inicio, blog o perfil en otro sitio" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index fd7b37146d..8fbe80d9a4 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:05:47+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:15+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -25,9 +25,9 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -159,7 +159,7 @@ msgstr "چنین صفحه‌ای وجود ندارد." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -516,7 +516,8 @@ msgstr "کاربر گیرنده یافت نشد." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "نمی‌توان پیام مستقیم را به کاربرانی که دوست شما نیستند، فرستاد." #. TRANS: Client error displayed trying to direct message self (403). @@ -601,7 +602,7 @@ msgstr "نمی‌توان کاربر هدف را پیدا کرد." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی دیگر انتخاب کنید." @@ -611,7 +612,7 @@ msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "لقب نا معتبر." @@ -624,7 +625,7 @@ msgstr "لقب نا معتبر." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "صفحهٔ خانگی یک نشانی معتبر نیست." @@ -634,7 +635,7 @@ msgstr "صفحهٔ خانگی یک نشانی معتبر نیست." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "نام کامل خیلی طولانی است (حداکثر ۲۵۵ نویسه)." @@ -662,7 +663,7 @@ msgstr[0] "توصیف خیلی طولانی است (حداکثر %d نویسه)" #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "نام مکان خیلی طولانی است (حداکثر ۲۵۵ نویسه)" @@ -820,15 +821,15 @@ msgstr "شما شناسایی نشده اید." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "مشکلی در دریافت نشست شما وجود دارد. لطفا بعدا سعی کنید." @@ -860,7 +861,7 @@ msgstr "هنگام افزودن کاربر برنامهٔ OAuth در پایگا #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "ارسال غیر قابل انتظار فرم." @@ -914,19 +915,20 @@ msgstr "حساب کاربری" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "نام کاربری" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "گذرواژه" @@ -1050,7 +1052,7 @@ msgstr "رابط مورد نظر پیدا نشد." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "قالب پشتیبانی نشده." #. TRANS: Client error displayed requesting a deleted status. @@ -1226,25 +1228,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "پیدا کردن محتوای پیام‌ها" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." @@ -1412,7 +1415,7 @@ msgid "Not a member." msgstr "همهٔ اعضا" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "نمی‌توان اشتراک را ذخیره کرد." @@ -1518,9 +1521,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "کاربر نمایهٔ تطبیق ندارد." @@ -1578,9 +1583,10 @@ msgstr "برش" msgid "No file uploaded." msgstr "هیچ پرونده‌ای بارگذاری نشد." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "" "یک مربع از عکس خود را انتخاب کنید تا به عنوان تصویر چهرهٔ شما انتخاب شود." @@ -1641,7 +1647,7 @@ msgstr "پیش‌زمینه" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1683,7 +1689,8 @@ msgstr "خیر" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "کاربر را مسدود نکن" #. TRANS: Button label on the user block form. @@ -1700,9 +1707,9 @@ msgid "Yes" msgstr "بله" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "کاربر را مسدود کن" #. TRANS: Server error displayed when blocking a user fails. @@ -1867,7 +1874,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "تایید" @@ -1897,13 +1904,13 @@ msgstr "برنامه یافت نشد." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "شما مالک این برنامه نیستید." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "یک مشکل با رمز نشست شما وجود داشت." @@ -1927,12 +1934,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "این برنامه حذف نشود" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "این برنامه حذف شود" #. TRANS: Client error when trying to delete group while not logged in. @@ -1990,13 +1999,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 #, fuzzy -msgid "Do not delete this group" +msgid "Do not delete this group." msgstr "این پیام را پاک نکن" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 #, fuzzy -msgid "Delete this group" +msgid "Delete this group." msgstr "حذف این کاربر" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2039,12 +2048,14 @@ msgstr "آیا اطمینان دارید که می‌خواهید این پیا #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "این پیام را پاک نکن" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "این پیام را پاک کن" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2081,13 +2092,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "این پیام را پاک نکن" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "حذف این کاربر" #. TRANS: Message used as title for design settings for the site. @@ -2257,21 +2268,21 @@ msgid "Use defaults" msgstr "استفاده‌کردن از پیش‌فرض‌ها" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "بازگرداندن طرح‌های پیش‌فرض" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "برگشت به حالت پیش گزیده" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "ذخیره‌کردن طرح" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2303,7 +2314,7 @@ msgid "You must be logged in to edit an application." msgstr "برای ویرایش یک برنامه باید وارد شده باشید." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "چنین برنامه‌ای وجود ندارد." @@ -2589,7 +2600,7 @@ msgid "Cannot normalize that email address." msgstr "نمی‌توان نشانی را قانونی کرد" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "یک نشانی پست الکترونیکی معتبر نیست." @@ -2665,19 +2676,22 @@ msgstr "هیچ نشانی ورودی وجود ندارد." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "نمی‌توان اطلاعات کاربر را به روز کرد." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "نشانی ورودی پاک شد." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "نشانی ورودی جدید اضافه شد." @@ -2688,7 +2702,8 @@ msgstr "این پیام ازقبل برگزیده شده است!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "خارج‌کردن از برگزیده‌ها" #. TRANS: Page title for first page of favorited notices. @@ -2929,12 +2944,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "دسترسی کاربر به گروه مسدود نشود" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "دسترسی کاربر به گروه مسدود شود" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3258,7 +3275,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "یک شناسهٔ کوچک برای Jabber/Gtalk من منتشر کن." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "تنظیمات ذخیره شد." @@ -3670,39 +3688,39 @@ msgstr "ذخیره‌کردن" msgid "Save license settings" msgstr "" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "قبلا وارد شده" -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "نام کاربری یا گذرواژه نادرست است." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "خطا در تنظیم کاربر. شما احتمالا اجازهٔ این کار را ندارید." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "ورود" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "ورود به وب‌گاه" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "مرا به یاد بسپار" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "وارد شدن خودکار. نه برای کامپیوترهای مشترک!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "گذرواژهٔ خود را گم یا فراموش کرده‌اید؟" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3710,11 +3728,11 @@ msgstr "" "به دلایل امنیتی، لطفا نام کاربری و گذرواژهٔ خود را قبل از تغییر تنظیمات " "دوباره وارد نمایید." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "با نام‌کاربری و گذرواژه‌تان وارد شوید." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3926,30 +3944,30 @@ msgid "You have not registered any applications yet." msgstr "شما هنوز هیچ برنامه‌ای را ثبت نکرده‌اید." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "برنامه‌های وصل‌شده" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "شما یک کاربر این برنامه نیستید." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "نمی‌توان دسترسی را برای برنامهٔ %s لغو کرد." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3957,20 +3975,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "شما به هیچ برنامه‌ای اجازه نداده‌اید که از حساب‌تان استفاده کند." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "رابط مورد نظر پیدا نشد." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "رابط مورد نظر پیدا نشد." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "این پیام نمایه‌ای ندارد." @@ -3980,6 +4008,16 @@ msgstr "این پیام نمایه‌ای ندارد." msgid "%1$s's status on %2$s" msgstr "وضعیت %1$s در %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "کاربر گیرنده یافت نشد." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4070,17 +4108,21 @@ msgstr "رمز ورود مشخص شده نامعتبر است." msgid "Login token expired." msgstr "رمز ورود منسوخ شده است." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "صندوق خروجی %1$s - صفحهٔ %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "فرستاده‌های %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "این صندوق خروجی شماست، که پیام‌های خصوصی فرستاده شده به وسیلهٔ شما را فهرست " @@ -4108,40 +4150,45 @@ msgstr "گذرواژهٔ پیشین" msgid "New password" msgstr "گذرواژهٔ تازه" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "۶ نویسه یا بیش‌تر" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "مانند گذرواژهٔ بالا" #: actions/passwordsettings.php:117 msgid "Change" msgstr "تغییر" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "گذرواژه باید ۶ نویسه یا بیش‌تر باشد." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "گذرواژه‌ها مطابقت ندارند." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "گذرواژه پیشین اشتباه است" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "هنگام ذخیرهٔ کاربر خطا رخ داد؛ نامعتبر است." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "نمی‌توان گذرواژهٔ جدید را ذخیره کرد." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "گذرواژه ذخیره شد." @@ -4484,7 +4531,7 @@ msgid "Profile information" msgstr "اطلاعات نمایه" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "۱-۶۴ کاراکتر کوچک یا اعداد، بدون نقطه گذاری یا فاصله" @@ -4492,7 +4539,7 @@ msgstr "۱-۶۴ کاراکتر کوچک یا اعداد، بدون نقطه گذ #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4500,13 +4547,13 @@ msgstr "نام‌کامل" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "صفحهٔ خانگی" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "نشانی اینترنتی صفحهٔ خانگی، وبلاگ یا نمایه‌تان در یک وب‌گاه دیگر" @@ -4514,35 +4561,36 @@ msgstr "نشانی اینترنتی صفحهٔ خانگی، وبلاگ یا نم #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" msgstr[0] "خودتان و علاقه‌مندی‌هایتان را در %d نویسه توصیف کنید" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "خودتان و علاقه‌مندی‌هایتان را توصیف کنید" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "شرح‌حال" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "موقعیت" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "مکانی که شما در آن هستید، مانند «شهر، ایالت (یا استان)، کشور»" @@ -4561,8 +4609,10 @@ msgstr "برچسب‌ها" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "برچسب‌ها برای خودتان (حروف، اعداد، -، .، و _) جدا شده با کاما- یا فاصله-" @@ -4573,7 +4623,8 @@ msgstr "زبان" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "زبان برگزیده" #. TRANS: Dropdownlist label in form for profile settings. @@ -4588,15 +4639,16 @@ msgstr "شما معمولا در کدام منطقهٔ زمانی هستید؟" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "به صورت خودکار مشترک هر کسی بشو که مشترک من می‌شود (بهترین برای غیر انسان‌ها)" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4615,9 +4667,9 @@ msgstr "زبان بسیار طولانی است ( حداکثر ۵۰ نویسه)" #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "نشان نادرست »%s«" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4860,6 +4912,12 @@ msgstr "بازیابی گذرواژه" msgid "Password recovery requested" msgstr "بازیابی گذرواژه درخواست شد" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "گذرواژه ذخیره شد." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4871,12 +4929,6 @@ msgstr "عمل نامعلوم" msgid "6 or more characters, and do not forget it!" msgstr "۶ نویسه یا بیش‌تر، و این را فراموش نکنید!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "مانند گذرواژهٔ بالا" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4930,14 +4982,8 @@ msgstr "گذرواژه باید ۶ نویسه یا بیش‌تر باشد." msgid "Password and confirmation do not match." msgstr "گذرواژه و تاییدیهٔ آن با هم تطابق ندارند." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "نمی‌توان گذرواژهٔ جدید را ذخیره کرد." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "هنگام گذاشتن کاربر خطا روی داد." @@ -4946,92 +4992,92 @@ msgstr "هنگام گذاشتن کاربر خطا روی داد." msgid "New password successfully saved. You are now logged in." msgstr "گذرواژه تازه با موفقیت ذخیره شد. شما اکنون وارد شده‌اید." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "با عرض معذرت، تنها افراد دعوت شده می توانند ثبت نام کنند." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "با عرض تاسف، کد دعوت نا معتبر است." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "ثبت نام با موفقیت انجام شد." -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "ثبت نام" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "اجازهٔ ثبت‌نام داده نشده است." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "شما نمی توانید ثبت نام کنید اگر با لیسانس( جواز ) موافقت نکنید." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "نشانی پست الکترونیکی از قبل وجود دارد." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "نام کاربری یا گذرواژه نا معتبر است." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "با این فرم شما می‌توانید یک حساب تازه بسازید. سپس شما می‌توانید پیام بفرستید و " "به دوستان و همکارانتان بپیوندید. " -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "۶ نویسه یا بیش‌تر" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "پست الکترونیکی" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "تنها برای به‌هنگام‌سازی‌ها، اعلامیه‌ها و بازیابی گذرواژه به کار می‌رود" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "نام بلند تر، به طور بهتر نام واقعیتان" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "نشانی اینترنتی صفحهٔ خانگی، وبلاگ یا نمایه‌تان در یک وب‌گاه دیگر" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "مکانی که شما در آن هستید، مانند «شهر، ایالت (یا استان)، کشور»" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "من متوجه هستم که محتوا و داده‌های %1$s خصوصی و محرمانه هستند." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "متن و پرونده‌های من دارای حق تکثیر %1$s هستند." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "متن و پرونده‌های من زیر حق تکثیر خودم می‌مانند." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "تمام حقوق محفوظ است." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5040,7 +5086,7 @@ msgstr "" "نوشته‌ها و پرونده‌های من به جز داده‌های خصوصی گذرواژه، نشانی پست الکترونیک، " "نشانی پیام‌رسان فوری و شماره تلفن زیر مجوز %s هستند." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5074,7 +5120,7 @@ msgstr "" "از این‌که نام‌نویسی کرده‌اید، تشکر می‌کنیم و امیدواریم که از استفاده از این " "سرویس لذت ببرید." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5106,7 +5152,8 @@ msgid "User nickname" msgstr "نام کاربری کاربر" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "نام کاربری، کاربری که می خواهید او را دنبال کنید" #: actions/remotesubscribe.php:132 @@ -5114,7 +5161,8 @@ msgid "Profile URL" msgstr "نشانی نمایه" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "نشانی اینترنتی نمایهٔ شما در سرویس میکروبلاگینگ سازگار دیگری" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5124,7 +5172,8 @@ msgid "Subscribe" msgstr "اشتراک" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "نشانی اینترنتی نمایه نامعتبر است (فرمت نامناسب است)" #: actions/remotesubscribe.php:167 @@ -5322,7 +5371,7 @@ msgstr "شما نمی‌توانید نقش‌های کاربری را در ای msgid "User doesn't have this role." msgstr "کاربر این نقش را ندارد." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5367,87 +5416,87 @@ msgstr "خروجی اشکال‌زدایی برای نشست‌ها روشن ش msgid "Save site settings" msgstr "ذخیرهٔ تنظیمات وب‌گاه" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "برای دیدن یک برنامه باید وارد شده باشید." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "نمایهٔ برنامه" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "شمایل" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "نام" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "سازمان" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "توصیف" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "آمار" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "ساخته شده توسط %1$s - دسترسی %2$s به صورت پیش‌فرض - %3$d کاربر" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "اعمال برنامه" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "حذف" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "اطلاعات برنامه" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "کلید مصرف‌کننده" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "رمز مصرف‌کننده" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "نشانی اینترنتی شناسهٔ درخواست" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "نشانی اینترنتی نشانهٔ درخواست" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "نشانی اجازه‌دادن" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5455,7 +5504,7 @@ msgstr "" "توجه: ما امضاهای HMAC-SHA1 را پشتیبانی می‌کنیم. ما روش امضای plaintext را " "پشتیبانی نمی‌کنیم." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "آیا مطمئن هستید که می‌خواهید کلید و رمز خریدار را دوباره تعیین کنید؟" @@ -5547,16 +5596,18 @@ msgid "Group profile" msgstr "نمایهٔ گروه" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "نشانی اینترنتی" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "یادداشت" @@ -5705,7 +5756,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s، صفحهٔ %2$d" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5953,7 +6004,8 @@ msgstr "متن پیام عمومی وب‌گاه (حداکثر ۲۵۵ نویسه #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "ذخیرهٔ پیام وب‌گاه" #. TRANS: Title for SMS settings. @@ -6012,7 +6064,8 @@ msgstr "شمارهٔ تماس پیامک" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "شماره تلفن، بدون نشانه گذاری یا فاصله، با کد منطقه" #. TRANS: Form legend for SMS preferences form. @@ -6352,8 +6405,9 @@ msgstr "برچسب %s" msgid "User profile" msgstr "نمایهٔ کاربر" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "تصویر" @@ -6369,6 +6423,11 @@ msgid "" msgstr "" "برچسب‌ها برای این کاربر (حروف، اعداد، -، .، و _)، جدا شده با کاما- یا فاصله-" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "نشان نادرست »%s«" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6405,7 +6464,7 @@ msgstr "هیچ شناسهٔ نمایه‌ای درخواست نشده است." msgid "Unsubscribed" msgstr "لغو اشتراک شده" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, fuzzy, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6437,7 +6496,7 @@ msgstr "متن خوشامدگویی نامعتبر است. بیشینهٔ طول #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, fuzzy, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "اشتراک پیش‌فرض نامعتبر است: «%1$s» کاربر نیست." #. TRANS: Link description in user account settings menu. @@ -6498,105 +6557,145 @@ msgstr "چنان‌که به کاربران اجازهٔ دعوت‌کردن ک #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" -msgstr "" +#, fuzzy +msgid "Save user settings." +msgstr "ذخیرهٔ تنظیمات وب‌گاه" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "تصدیق اشتراک" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "لطفا این جزئیات را برای اطمینان از این‌که می‌خواهید مشترک پیام‌های این کاربر " "شوید، بررسی کنید. اگر شما درخواست اشتراک پیام‌های کسی را نداده‌اید، روی «رد " "کردن» کلیک کنید." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "مجوز" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "پذیرفتن" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "مشترک شدن این کاربر" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "رد کردن" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "رد کردن این اشتراک" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "هیچ درخواست اجازه‌ای وجود ندارد!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "اشتراک تصدیق شد" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "اشتراک پذیرفته نشد" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " "subscription." msgstr "" -#: actions/userauthorization.php:303 +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 #, fuzzy, php-format -msgid "Listener URI ‘%s’ not found here." +msgid "Listener URI \"%s\" not found here." msgstr "نشانی تصویر چهره «%s» معتبر نیست." -#: actions/userauthorization.php:308 +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 #, fuzzy, php-format -msgid "Listenee URI ‘%s’ is too long." +msgid "Listenee URI \"%s\" is too long." msgstr "نشانی تصویر چهره «%s» معتبر نیست." -#: actions/userauthorization.php:314 +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 #, fuzzy, php-format -msgid "Listenee URI ‘%s’ is a local user." +msgid "Listenee URI \"%s\" is a local user." msgstr "نشانی اینترنتی نمایهٔ «%s» برای یک کاربر محلی است." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "نشانی اینترنتی نمایهٔ «%s» برای یک کاربر محلی است." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "مجوز پیام «%1$s» با مجوز وب‌گاه «%2$s» سازگار نیست." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "نشانی تصویر چهره «%s» معتبر نیست." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "نمی‌توان نشانی اینترنتی چهره را خواند«%s»." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "نوع تصویر برای نشانی اینترنتی چهره نادرست است «%s»." #. TRANS: Page title for profile design page. @@ -7804,6 +7903,11 @@ msgstr "تغییر گذرواژه مجاز نیست" msgid "Block" msgstr "بازداشتن" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "کاربر را مسدود کن" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8260,6 +8364,11 @@ msgstr "برنامه‌های وصل‌شدهٔ مجاز" msgid "Database error" msgstr "خطای پایگاه داده" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "حذف این کاربر" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8298,6 +8407,21 @@ msgstr "تغییر رنگ‌ها" msgid "Use defaults" msgstr "استفاده‌کردن از پیش‌فرض‌ها" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "بازگرداندن طرح‌های پیش‌فرض" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "برگشت به حالت پیش گزیده" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "ذخیره‌کردن طرح" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8406,7 +8530,6 @@ msgid "Grant this user the \"%s\" role" msgstr "" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "۱-۶۴ کاراکتر کوچک یا اعداد، بدون نقطه گذاری یا فاصله" @@ -9173,6 +9296,10 @@ msgstr "به این پیام پاسخ دهید" msgid "Reply" msgstr "پاسخ" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "این پیام را پاک کن" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "پیام تکرار شد" @@ -9457,6 +9584,10 @@ msgstr "دعوت‌کردن" msgid "Invite friends and colleagues to join you on %s" msgstr "به شما ملحق شوند %s دوستان و همکاران را دعوت کنید تا در" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "مشترک شدن این کاربر" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9725,3 +9856,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "۶ نویسه یا بیش‌تر" + +#~ msgid "Same as password above" +#~ msgstr "مانند گذرواژهٔ بالا" + +#~ msgid "Can't save new password." +#~ msgstr "نمی‌توان گذرواژهٔ جدید را ذخیره کرد." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "نشانی اینترنتی صفحهٔ خانگی، وبلاگ یا نمایه‌تان در یک وب‌گاه دیگر" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 438bc2a854..e9fd7976e9 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:05:50+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:17+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -162,7 +162,7 @@ msgstr "Sivua ei ole." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -520,7 +520,7 @@ msgstr "Vastaanottajaa ei löytynyt." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 #, fuzzy -msgid "Can't send direct messages to users who aren't your friend." +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" "Et voi lähettää suoraa viestiä käyttäjälle, jonka kanssa et ole vielä kaveri." @@ -608,7 +608,7 @@ msgstr "Ei voitu päivittää käyttäjää." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." @@ -618,7 +618,7 @@ msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Tuo ei ole kelvollinen tunnus." @@ -631,7 +631,7 @@ msgstr "Tuo ei ole kelvollinen tunnus." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "Kotisivun verkko-osoite ei ole toimiva." @@ -641,7 +641,7 @@ msgstr "Kotisivun verkko-osoite ei ole toimiva." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Koko nimi on liian pitkä (max 255 merkkiä)." @@ -670,7 +670,7 @@ msgstr[1] "kuvaus on liian pitkä (max %d merkkiä)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." @@ -829,15 +829,15 @@ msgstr "Sinulla ei ole valtuutusta tähän." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -872,7 +872,7 @@ msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Odottamaton lomakkeen lähetys." @@ -918,19 +918,20 @@ msgstr "Käyttäjätili" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Tunnus" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Salasana" @@ -1054,7 +1055,7 @@ msgstr "API-metodia ei löytynyt." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "Formaattia ei ole tuettu." #. TRANS: Client error displayed requesting a deleted status. @@ -1233,25 +1234,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Hae päivityksien sisällöstä" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." @@ -1419,7 +1421,7 @@ msgid "Not a member." msgstr "Kaikki jäsenet" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Tilausta ei onnistuttu tallentamaan." @@ -1524,9 +1526,11 @@ msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Käyttäjällä ei ole profiilia." @@ -1584,9 +1588,10 @@ msgstr "Rajaa" msgid "No file uploaded." msgstr "Profiilia ei ole määritelty." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Valitse neliön muotoinen alue kuvasta profiilikuvaksi" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1646,7 +1651,7 @@ msgstr "Tausta" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1684,7 +1689,8 @@ msgstr "Ei" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Älä estä tätä käyttäjää" #. TRANS: Button label on the user block form. @@ -1701,9 +1707,9 @@ msgid "Yes" msgstr "Kyllä" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Estä tämä käyttäjä" #. TRANS: Server error displayed when blocking a user fails. @@ -1868,7 +1874,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Vahvista" @@ -1898,14 +1904,14 @@ msgstr "Vahvistuskoodia ei löytynyt." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 #, fuzzy msgid "You are not the owner of this application." msgstr "Sinä et kuulu tähän ryhmään." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Istuntoavaimesi kanssa oli ongelma." @@ -1928,13 +1934,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 #, fuzzy -msgid "Do not delete this application" +msgid "Do not delete this application." msgstr "Älä poista tätä päivitystä" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 #, fuzzy -msgid "Delete this application" +msgid "Delete this application." msgstr "Poista tämä päivitys" #. TRANS: Client error when trying to delete group while not logged in. @@ -1990,13 +1996,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 #, fuzzy -msgid "Do not delete this group" +msgid "Do not delete this group." msgstr "Älä poista tätä päivitystä" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 #, fuzzy -msgid "Delete this group" +msgid "Delete this group." msgstr "Poista käyttäjä" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2039,12 +2045,14 @@ msgstr "Oletko varma että haluat poistaa tämän päivityksen?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Älä poista tätä päivitystä" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Poista tämä päivitys" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2079,13 +2087,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "Älä poista tätä päivitystä" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Poista käyttäjä" #. TRANS: Message used as title for design settings for the site. @@ -2259,24 +2267,21 @@ msgid "Use defaults" msgstr "Käytä oletusasetuksia" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 +#: actions/designadminpanel.php:720 #, fuzzy -msgid "Restore default designs" +msgid "Restore default designs." msgstr "Käytä oletusasetuksia" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 +#: actions/designadminpanel.php:728 #, fuzzy -msgid "Reset back to default" +msgid "Reset back to default." msgstr "Käytä oletusasetuksia" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 +#: actions/designadminpanel.php:736 #, fuzzy -msgid "Save design" +msgid "Save design." msgstr "Ryhmän ulkoasu" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2310,7 +2315,7 @@ msgstr "" "Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 #, fuzzy msgid "No such application." msgstr "Päivitystä ei ole." @@ -2605,7 +2610,7 @@ msgid "Cannot normalize that email address." msgstr "Ei voida normalisoida sähköpostiosoitetta" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Tuo ei ole kelvollinen sähköpostiosoite." @@ -2683,19 +2688,22 @@ msgstr "Saapuvan sähköpostin osoitetta ei ole." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Ei voitu päivittää käyttäjätietoja." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Saapuvan sähköpostin osoite poistettu." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Uusi saapuvan sähköpostin osoite lisätty." @@ -2706,7 +2714,8 @@ msgstr "Tämä päivitys on jo suosikki!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Poista suosikeista" #. TRANS: Page title for first page of favorited notices. @@ -2943,12 +2952,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Älä estä tätä käyttäjää tästä ryhmästä" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Estä tätä käyttäjää osallistumassa tähän ryhmään" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3271,7 +3282,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Julkaise MicroID Jabber/GTalk-osoitteelleni." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Asetukset tallennettu." @@ -3692,42 +3704,42 @@ msgstr "Tallenna" msgid "Save license settings" msgstr "" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Olet jo kirjautunut sisään." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Väärä käyttäjätunnus tai salasana" -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 #, fuzzy msgid "Error setting user. You are probably not authorized." msgstr "Sinulla ei ole valtuutusta tähän." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Kirjaudu sisään" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Kirjaudu sisään" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Muista minut" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Kirjaudu sisään automaattisesti tulevaisuudessa; ei tietokoneille joilla " "useampi käyttäjä!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Oletko hukannut tai unohtanut salasanasi?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3735,12 +3747,12 @@ msgstr "" "Syötä turvallisuussyistä käyttäjätunnuksesi ja salasanasi uudelleen ennen " "asetuksiesi muuttamista." -#: actions/login.php:292 +#: actions/login.php:281 #, fuzzy msgid "Login with your username and password." msgstr "Kirjaudu sisään käyttäjätunnuksella ja salasanalla" -#: actions/login.php:295 +#: actions/login.php:284 #, fuzzy, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3959,31 +3971,31 @@ msgid "You have not registered any applications yet." msgstr "" #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 #, fuzzy msgid "You are not a user of that application." msgstr "Sinä et kuulu tähän ryhmään." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "Käytä tätä lomaketta muokataksesi ryhmää." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3991,20 +4003,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "" #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "API-metodia ei löytynyt." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "API-metodia ei löytynyt." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Käyttäjällä ei ole profiilia." @@ -4014,6 +4036,16 @@ msgstr "Käyttäjällä ei ole profiilia." msgid "%1$s's status on %2$s" msgstr "Käyttäjän %1$s päivitys %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Vastaanottajaa ei löytynyt." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, fuzzy, php-format @@ -4108,17 +4140,21 @@ msgstr "Päivityksen sisältö ei kelpaa" msgid "Login token expired." msgstr "Kirjaudu sisään" -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, fuzzy, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Käyttäjän %s lähetetyt viestit" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Käyttäjän %s lähetetyt viestit" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "Tämä on postilaatikkosi, jossa on lähettämäsi yksityisviestit." @@ -4144,40 +4180,45 @@ msgstr "Vanha salasana" msgid "New password" msgstr "Uusi salasana" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 tai useampia merkkejä" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "Sama kuin ylläoleva salasana" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Vaihda" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Salasanassa pitää olla 6 tai useampia merkkejä." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Salasanat eivät täsmää." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Väärä vanha salasana" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Virhe tapahtui käyttäjän tallentamisessa; epäkelpo." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Uutta salasanaa ei voida tallentaa." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Salasana tallennettu." @@ -4526,7 +4567,7 @@ msgid "Profile information" msgstr "Profiilitieto" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" @@ -4536,7 +4577,7 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4544,13 +4585,13 @@ msgstr "Koko nimi" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Kotisivu" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "Kotisivusi, blogisi tai toisella sivustolla olevan profiilisi osoite." @@ -4558,7 +4599,7 @@ msgstr "Kotisivusi, blogisi tai toisella sivustolla olevan profiilisi osoite." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4566,28 +4607,29 @@ msgstr[0] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" msgstr[1] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Kuvaile itseäsi ja kiinnostuksen kohteitasi" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Tietoja" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Kotipaikka" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 #, fuzzy msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" @@ -4607,8 +4649,10 @@ msgstr "Tagit" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Kuvaa itseäsi henkilötageilla (sanoja joissa voi olla muita kirjaimia kuin " "ääkköset, numeroita, -, ., ja _), pilkulla tai välilyönnillä erotettuna" @@ -4620,7 +4664,8 @@ msgstr "Kieli" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Ensisijainen kieli" #. TRANS: Dropdownlist label in form for profile settings. @@ -4635,8 +4680,9 @@ msgstr "Millä aikavyöhykkeellä olet tavallisesti?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Tilaa automaattisesti kaikki, jotka tilaavat päivitykseni (ei sovi hyvin " "ihmiskäyttäjille)" @@ -4644,7 +4690,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4664,9 +4710,9 @@ msgstr "Kieli on liian pitkä (enintään 50 merkkiä)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Virheellinen tagi: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4905,6 +4951,12 @@ msgstr "Salasanan palautus" msgid "Password recovery requested" msgstr "Salasanan palautuspyyntö lähetetty." +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Salasana tallennettu." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4916,12 +4968,6 @@ msgstr "Tuntematon toiminto" msgid "6 or more characters, and do not forget it!" msgstr "6 tai useampia merkkejä äläkä unohda mitä kirjoitit!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "Sama kuin ylläoleva salasana" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4975,14 +5021,8 @@ msgstr "Salasanassa pitää olla 6 tai useampia merkkejä." msgid "Password and confirmation do not match." msgstr "Salasana ja salasanan vahvistus eivät täsmää." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Uutta salasanaa ei voida tallentaa." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Virhe tapahtui käyttäjän asettamisessa." @@ -4992,92 +5032,91 @@ msgid "New password successfully saved. You are now logged in." msgstr "" "Uusi salasana tallennettiin onnistuneesti. Olet nyt kirjautunut sisään." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Valitettavasti vain kutsutut ihmiset voivat rekisteröityä." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Virheellinen kutsukoodin." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Rekisteröityminen onnistui" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Rekisteröidy" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Rekisteröityminen ei ole sallittu." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Sähköpostiosoite on jo käytössä." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Käyttäjätunnus tai salasana ei kelpaa." -#: actions/register.php:351 +#: actions/register.php:340 msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 tai useampia merkkejä" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Sähköposti" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "" "Käytetään ainoastaan päivityksien lähettämiseen, ilmoitusasioihin ja " "salasanan uudelleen käyttöönottoon." -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Pitempi nimi, mieluiten oikea nimesi" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "Kotisivusi, blogisi tai toisella sivustolla olevan profiilisi osoite." +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, fuzzy, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5086,7 +5125,7 @@ msgstr "" "poislukien yksityinen tieto: salasana, sähköpostiosoite, IM-osoite, " "puhelinnumero." -#: actions/register.php:588 +#: actions/register.php:573 #, fuzzy, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5119,7 +5158,7 @@ msgstr "" "\n" "Kiitokset rekisteröitymisestäsi ja toivomme että pidät palvelustamme." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5152,7 +5191,8 @@ msgid "User nickname" msgstr "Käyttäjätunnus" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Käyttäjän, jota haluat seurata, käyttäjätunnus" #: actions/remotesubscribe.php:132 @@ -5160,7 +5200,8 @@ msgid "Profile URL" msgstr "Profiilin URL" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5170,7 +5211,8 @@ msgid "Subscribe" msgstr "Tilaa" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "Profiilin URL-osoite '%s' ei kelpaa (virheellinen muoto)." #: actions/remotesubscribe.php:167 @@ -5375,7 +5417,7 @@ msgstr "Päivityksesi tähän palveluun on estetty." msgid "User doesn't have this role." msgstr "Käyttäjälle ei löydy profiilia" -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 #, fuzzy msgid "StatusNet" msgstr "Päivitys poistettu." @@ -5421,97 +5463,97 @@ msgstr "" msgid "Save site settings" msgstr "Profiilikuva-asetukset" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 #, fuzzy msgid "You must be logged in to view an application." msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 #, fuzzy msgid "Application profile" msgstr "Päivitykselle ei ole profiilia" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 #, fuzzy msgid "Name" msgstr "Tunnus" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 #, fuzzy msgid "Organization" msgstr "Sivutus" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Kuvaus" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Tilastot" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Poista" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 #, fuzzy msgid "Are you sure you want to reset your consumer key and secret?" msgstr "Oletko varma että haluat poistaa tämän päivityksen?" @@ -5597,16 +5639,18 @@ msgid "Group profile" msgstr "Ryhmän profiili" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Huomaa" @@ -5747,7 +5791,7 @@ msgid "%1$s tagged %2$s" msgstr "Ryhmät, sivu %d" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5997,7 +6041,7 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 #, fuzzy -msgid "Save site notice" +msgid "Save site notice." msgstr "Palvelun ilmoitus" #. TRANS: Title for SMS settings. @@ -6057,7 +6101,8 @@ msgstr "Puhelinnumeroa ei ole." #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Puhelinnumero, ei välimerkkejä tai välilyöntejä, suuntanumerollinen" #. TRANS: Form legend for SMS preferences form. @@ -6389,8 +6434,9 @@ msgstr "Tagi %s" msgid "User profile" msgstr "Käyttäjän profiili" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Kuva" @@ -6407,6 +6453,11 @@ msgstr "" "Käyttäjän tagit (kirjaimet, numerot, -, ., ja _), pilkulla tai välilyönnillä " "erotettuna" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Virheellinen tagi: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6446,7 +6497,7 @@ msgstr "Ei profiilia tuolle ID:lle." msgid "Unsubscribed" msgstr "Tilaus lopetettu" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6478,7 +6529,7 @@ msgstr "" #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" #. TRANS: Link description in user account settings menu. @@ -6546,57 +6597,71 @@ msgstr "" #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" -msgstr "" +#, fuzzy +msgid "Save user settings." +msgstr "Profiilikuva-asetukset" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Valtuuta tilaus" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän " "päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, " "paina \"Peruuta\"." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Lisenssi" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Hyväksy" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Tilaa tämä käyttäjä" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Hylkää" -#: actions/userauthorization.php:220 +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 #, fuzzy -msgid "Reject this subscription" +msgid "Reject this subscription." msgstr "Käyttäjän %s tilaukset" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Ei valtuutuspyyntöä!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Tilaus sallittu" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -6607,11 +6672,12 @@ msgstr "" "saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. " "Tilauskoodisi on:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Tilaus hylätty" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -6621,39 +6687,62 @@ msgstr "" "Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole " "saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan." -#: actions/userauthorization.php:303 +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 #, php-format -msgid "Listener URI ‘%s’ not found here." +msgid "Listener URI \"%s\" not found here." msgstr "" -#: actions/userauthorization.php:308 +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 #, php-format -msgid "Listenee URI ‘%s’ is too long." +msgid "Listenee URI \"%s\" is too long." msgstr "" -#: actions/userauthorization.php:314 +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 #, php-format -msgid "Listenee URI ‘%s’ is a local user." +msgid "Listenee URI \"%s\" is a local user." msgstr "" -#: actions/userauthorization.php:329 +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 #, php-format -msgid "Profile URL ‘%s’ is for a local user." +msgid "Profile URL \"%s\" is for a local user." msgstr "" -#: actions/userauthorization.php:345 +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 #, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" -#: actions/userauthorization.php:350 +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." +msgstr "Kotisivun verkko-osoite ei ole toimiva." + +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 #, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." +msgid "Cannot read avatar URL \"%s\"." msgstr "Kuvan URL-osoitetta '%s' ei voi avata." -#: actions/userauthorization.php:355 +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 #, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Kuvan '%s' tyyppi on väärä" #. TRANS: Page title for profile design page. @@ -7889,6 +7978,11 @@ msgstr "Salasanan vaihto" msgid "Block" msgstr "Estä" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Estä tämä käyttäjä" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8313,6 +8407,11 @@ msgstr "" msgid "Database error" msgstr "Tietokantavirhe" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Poista käyttäjä" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8351,6 +8450,24 @@ msgstr "Vaihda väriä" msgid "Use defaults" msgstr "Käytä oletusasetuksia" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +#, fuzzy +msgid "Restore default designs" +msgstr "Käytä oletusasetuksia" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +#, fuzzy +msgid "Reset back to default" +msgstr "Käytä oletusasetuksia" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +#, fuzzy +msgid "Save design" +msgstr "Ryhmän ulkoasu" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8460,7 +8577,6 @@ msgid "Grant this user the \"%s\" role" msgstr "" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 pientä kirjainta tai numeroa, ei ääkkösiä eikä välimerkkejä tai " @@ -9157,6 +9273,10 @@ msgstr "Vastaa tähän päivitykseen" msgid "Reply" msgstr "Vastaus" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Poista tämä päivitys" + #: lib/noticelist.php:691 #, fuzzy msgid "Notice repeated" @@ -9450,6 +9570,10 @@ msgstr "Kutsu" msgid "Invite friends and colleagues to join you on %s" msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Tilaa tämä käyttäjä" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9726,3 +9850,16 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6 tai useampia merkkejä" + +#~ msgid "Same as password above" +#~ msgstr "Sama kuin ylläoleva salasana" + +#~ msgid "Can't save new password." +#~ msgstr "Uutta salasanaa ei voida tallentaa." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "" +#~ "Kotisivusi, blogisi tai toisella sivustolla olevan profiilisi osoite." diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 03f7adecd5..6692f47d3f 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -21,17 +21,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:05:53+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -163,7 +163,7 @@ msgstr "Page non trouvée." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -528,7 +528,8 @@ msgstr "Destinataire non trouvé." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" "Vous ne pouvez envoyer des messages personnels qu’aux utilisateurs inscrits " "comme amis." @@ -615,7 +616,7 @@ msgstr "Impossible de trouver l’utilisateur cible." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Pseudo déjà utilisé. Essayez-en un autre." @@ -625,7 +626,7 @@ msgstr "Pseudo déjà utilisé. Essayez-en un autre." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Pseudo invalide." @@ -638,7 +639,7 @@ msgstr "Pseudo invalide." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "L’adresse du site personnel n’est pas un URL valide. " @@ -648,7 +649,7 @@ msgstr "L’adresse du site personnel n’est pas un URL valide. " #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "Le nom complet est trop long (limité à 255 caractères maximum)." @@ -676,7 +677,7 @@ msgstr[1] "La description est trop longue (limitée à %d caractères maximum)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "L’emplacement est trop long (limité à 255 caractères maximum)." @@ -831,15 +832,15 @@ msgstr "Le jeton de requête a déjà été autorisé." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -874,7 +875,7 @@ msgstr "" #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Soumission de formulaire inattendue." @@ -927,19 +928,20 @@ msgstr "Compte" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Pseudo" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Mot de passe" @@ -1061,8 +1063,8 @@ msgstr "Méthode HTTP non trouvée !" #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 -#, php-format -msgid "Unsupported format: %s" +#, fuzzy, php-format +msgid "Unsupported format: %s." msgstr "Format non supporté : %s" #. TRANS: Client error displayed requesting a deleted status. @@ -1244,26 +1246,27 @@ msgid "Atom post must be an Atom entry." msgstr "Une publication Atom doit être une entrée « Atom »." #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 #, fuzzy msgid "Can only handle POST activities." msgstr "Ne peut gérer que les activités de publication." #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, fuzzy, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "Ne peut gérer l’objet d’activité de type « %s »" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Chercher dans le contenu des avis" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1430,7 +1433,7 @@ msgid "Not a member." msgstr "Tous les membres" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Impossible de supprimer l’abonnement à soi-même." @@ -1538,9 +1541,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Utilisateur sans profil correspondant." @@ -1595,9 +1600,10 @@ msgstr "Recadrer" msgid "No file uploaded." msgstr "Aucun fichier n’a été téléversé." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Sélectionnez une zone de forme carrée pour définir votre avatar" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1657,7 +1663,7 @@ msgstr "Arrière plan" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1698,7 +1704,8 @@ msgstr "Non" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Ne pas bloquer cet utilisateur" #. TRANS: Button label on the user block form. @@ -1715,9 +1722,9 @@ msgid "Yes" msgstr "Oui" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Bloquer cet utilisateur" #. TRANS: Server error displayed when blocking a user fails. @@ -1880,7 +1887,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Confirmer" @@ -1910,13 +1917,13 @@ msgstr "Application non trouvée." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Vous n’êtes pas le propriétaire de cette application." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Un problème est survenu avec votre jeton de session." @@ -1940,12 +1947,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Ne pas supprimer cette application" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Supprimer cette application" #. TRANS: Client error when trying to delete group while not logged in. @@ -2000,12 +2009,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "Ne pas supprimer ce groupe" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "Supprimer ce groupe" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2048,12 +2059,14 @@ msgstr "Voulez-vous vraiment supprimer cet avis ?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Ne pas supprimer cet avis" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Supprimer cet avis" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2090,13 +2103,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "Ne pas supprimer ce groupe" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Supprimer cet utilisateur" #. TRANS: Message used as title for design settings for the site. @@ -2263,21 +2276,21 @@ msgid "Use defaults" msgstr "Utiliser les valeurs par défaut" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Restaurer les conceptions par défaut" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Revenir aux valeurs par défaut" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Sauvegarder la conception" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2309,7 +2322,7 @@ msgid "You must be logged in to edit an application." msgstr "Vous devez être connecté pour modifier une application." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Application non trouvée." @@ -2590,7 +2603,7 @@ msgid "Cannot normalize that email address." msgstr "Impossible d’utiliser cette adresse courriel" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Adresse courriel invalide." @@ -2666,19 +2679,22 @@ msgstr "Aucune adresse de courriel entrant." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Impossible de mettre à jour le dossier de l’utilisateur." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "L’adresse de courriel entrant a été supprimée." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Nouvelle adresse de courriel entrant ajoutée." @@ -2689,7 +2705,8 @@ msgstr "Cet avis a déjà été ajouté à vos favoris !" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Retirer ce favori" #. TRANS: Page title for first page of favorited notices. @@ -2930,12 +2947,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Ne pas bloquer cet utilisateur pour ce groupe" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Bloquer cet utilisateur de de groupe" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3272,7 +3291,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Publier un MicroID pour mon adresse Jabber/GTalk." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Préférences enregistrées" @@ -3694,43 +3714,43 @@ msgstr "Enregistrer" msgid "Save license settings" msgstr "Enregistrer les paramètres de licence" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Déjà connecté." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Identifiant ou mot de passe incorrect." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "" "Erreur lors de la mise en place de l’utilisateur. Vous n’y êtes probablement " "pas autorisé." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Ouvrir une session" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Ouverture de session" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Se souvenir de moi" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Ouvrir automatiquement ma session à l’avenir (déconseillé pour les " "ordinateurs publics ou partagés)" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Mot de passe perdu ?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3738,11 +3758,11 @@ msgstr "" "Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et " "votre mot de passe afin d’enregistrer vos préférences." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Ouvrez une session avec un identifiant et un mot de passe." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3958,31 +3978,31 @@ msgid "You have not registered any applications yet." msgstr "Vous n’avez encore enregistré aucune application." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Applications connectées." #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" "Vous avez autorisé les applications suivantes à se connecter à votre compte." #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Vous n’êtes pas un utilisateur de cette application." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, php-format msgid "Unable to revoke access for application: %s." msgstr "Impossible de révoquer l’accès par l’application : %s." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3992,14 +4012,14 @@ msgstr "" "jeton personnel d’accès commençant par %2$s." #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "Vous n’avez autorisé aucune application à utiliser votre compte." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " @@ -4008,6 +4028,16 @@ msgstr "" "Êtes-vous un développeur ? [Inscrivez une application cliente OAuth](%s) à " "utiliser avec cette instance de StatusNet." +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "Page non trouvée." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "L’avis parent correspondant à cette réponse n’a pas été trouvé." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "L’avis n’a pas de profil." @@ -4017,6 +4047,16 @@ msgstr "L’avis n’a pas de profil." msgid "%1$s's status on %2$s" msgstr "Statut de %1$s sur %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Destinataire non trouvé." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4106,17 +4146,21 @@ msgstr "Jeton d’identification invalide." msgid "Login token expired." msgstr "Jeton d’identification périmé." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Boîte d’envoi de %1$s - page %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Boîte d’envoi de %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "Cette boîte d’envoi regroupe les messages personnels que vous avez envoyés." @@ -4143,40 +4187,45 @@ msgstr "Ancien mot de passe" msgid "New password" msgstr "Nouveau mot de passe" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 caractères ou plus" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "Identique au mot de passe ci-dessus" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Modifier" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Votre mot de passe doit contenir au moins 6 caractères." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Les mots de passe ne correspondent pas." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Ancien mot de passe incorrect" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Erreur lors de l’enregistrement de l’utilisateur ; invalide." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Impossible de sauvegarder le nouveau mot de passe." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Mot de passe enregistré." @@ -4504,14 +4553,14 @@ msgid "Profile information" msgstr "Information de profil" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces." #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4519,13 +4568,13 @@ msgstr "Nom complet" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Site personnel" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site." msgstr "" "Adresse URL de votre page personnelle, blogue ou profil sur un autre site." @@ -4533,7 +4582,7 @@ msgstr "" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4541,28 +4590,29 @@ msgstr[0] "Décrivez-vous avec vos intérêts en %d caractère" msgstr[1] "Décrivez-vous avec vos intérêts en %d caractères" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Décrivez vous et vos interêts" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Bio" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Emplacement" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Indiquez votre emplacement, ex.: « Ville, État (ou région), Pays »" @@ -4581,8 +4631,10 @@ msgstr "Balises" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Marques pour vous-même (lettres, chiffres, -, ., et _), séparées par des " "virgules ou des espaces" @@ -4594,7 +4646,8 @@ msgstr "Langue" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Langue préférée" #. TRANS: Dropdownlist label in form for profile settings. @@ -4609,8 +4662,9 @@ msgstr "Quel est votre fuseau horaire habituel ?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "M’abonner automatiquement à tous ceux qui s’abonnent à moi (recommandé pour " "les utilisateurs non-humains)" @@ -4618,7 +4672,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4637,9 +4691,9 @@ msgstr "La langue est trop longue (limitée à 50 caractères maximum)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Marque invalide : « %s »" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4887,6 +4941,12 @@ msgstr "Récupérer le mot de passe" msgid "Password recovery requested" msgstr "Récupération de mot de passe demandée" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Mot de passe enregistré." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4898,12 +4958,6 @@ msgstr "Action inconnue" msgid "6 or more characters, and do not forget it!" msgstr "6 caractères ou plus, et ne l’oubliez pas !" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "Identique au mot de passe ci-dessus" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4955,14 +5009,8 @@ msgstr "Le mot de passe doit contenir au moins 6 caractères." msgid "Password and confirmation do not match." msgstr "Le mot de passe et sa confirmation ne correspondent pas." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Impossible de sauvegarder le nouveau mot de passe." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Erreur lors de la configuration de l’utilisateur." @@ -4972,73 +5020,72 @@ msgid "New password successfully saved. You are now logged in." msgstr "" "Nouveau mot de passe créé avec succès. Votre session est maintenant ouverte." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Désolé ! Seules les personnes invitées peuvent s’inscrire." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Désolé, code d’invitation invalide." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Compte créé avec succès" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Créer un compte" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Inscription non autorisée." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Vous ne pouvez pas vous inscrire si vous n’acceptez pas la licence." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Cette adresse courriel est déjà utilisée." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Identifiant ou mot de passe incorrect." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "Avec ce formulaire vous pouvez créer un nouveau compte. Vous pourrez ensuite " "poster des avis and et vous relier à des amis et collègues. " -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 caractères ou plus" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Courriel" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "" "Utilisé uniquement pour les mises à jour, les notifications, et la " "récupération de mot de passe" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Nom plus long, votre \"vrai\" nom de préférence" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "" -"Adresse URL de votre page personnelle, blogue ou profil sur un autre site" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Indiquez votre emplacement, ex.: « Ville, État (ou région), Pays »" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." @@ -5046,23 +5093,23 @@ msgstr "" "Je comprends que le contenu et les données de %1$s sont privés et " "confidentiels." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "Mon texte et les fichiers sont protégés par copyright par %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "Mon texte et les fichiers restent sous mon propre droit d'auteur." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Tous droits réservés." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5072,7 +5119,7 @@ msgstr "" "données personnelles : mot de passe, adresse électronique, adresse de " "messagerie instantanée, numéro de téléphone." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5106,7 +5153,7 @@ msgstr "" "Merci pour votre inscription ! Nous vous souhaitons d’apprécier notre " "service." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5139,7 +5186,8 @@ msgid "User nickname" msgstr "Pseudo de l’utilisateur" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Pseudo de l’utilisateur que vous voulez suivre" #: actions/remotesubscribe.php:132 @@ -5147,7 +5195,8 @@ msgid "Profile URL" msgstr "URL du profil" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "URL de votre profil sur un autre service de micro-blogging compatible" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5157,7 +5206,8 @@ msgid "Subscribe" msgstr "S’abonner" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "URL du profil invalide (mauvais format)" #: actions/remotesubscribe.php:167 @@ -5360,7 +5410,7 @@ msgstr "Vous ne pouvez pas révoquer les rôles des utilisateurs sur ce site." msgid "User doesn't have this role." msgstr "L'utilisateur ne possède pas ce rôle." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5403,87 +5453,87 @@ msgstr "Activer la sortie de déboguage pour les sessions." msgid "Save site settings" msgstr "Sauvegarder les paramètres du site" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Vous devez être connecté pour voir une application." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Profil de l’application" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Icône" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Nom" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisation" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Description" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Statistiques" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "Créé par %1$s - accès %2$s par défaut - %3$d utilisateurs" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Actions de l’application" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Réinitialiser la clé et le secret" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Supprimer" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Informations sur l’application" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Clé de l’utilisateur" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Secret de l’utilisateur" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "URL du jeton de requête" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "URL du jeton d’accès" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "Autoriser l’URL" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5491,7 +5541,7 @@ msgstr "" "Note : Nous utilisons les signatures HMAC-SHA1. Nous n’utilisons pas la " "méthode de signature en texte clair." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "Voulez-vous vraiment réinitialiser votre clé consommateur et secrète ?" @@ -5584,16 +5634,18 @@ msgid "Group profile" msgstr "Profil du groupe" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Note" @@ -5741,7 +5793,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s a marqué « %2$s »" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5994,7 +6046,8 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Enregistrer l'avis du site" #. TRANS: Title for SMS settings. @@ -6054,7 +6107,8 @@ msgstr "Numéro de téléphone pour les SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "" "Numéro de téléphone, sans ponctuation ni espaces, incluant le code régional" @@ -6395,8 +6449,9 @@ msgstr "Marque %s" msgid "User profile" msgstr "Profil de l’utilisateur" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Photo" @@ -6413,6 +6468,11 @@ msgstr "" "Marques pour cet utilisateur (lettres, chiffres, -, ., et _), séparées par " "des virgules ou des espaces" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Marque invalide : « %s »" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6449,7 +6509,7 @@ msgstr "Aucun identifiant de profil dans la requête." msgid "Unsubscribed" msgstr "Désabonné" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6481,8 +6541,8 @@ msgstr "Texte de bienvenue invalide. La taille maximale est de 255 caractères." #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 -#, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +#, fuzzy, php-format +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Abonnement par défaut invalide : « %1$s » n’est pas un utilisateur." #. TRANS: Link description in user account settings menu. @@ -6544,55 +6604,71 @@ msgstr "" #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "Sauvegarder les paramètres utilisateur" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Autoriser l’abonnement" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " "abonner aux avis de cet utilisateur. Si vous n’avez pas demandé à vous " "abonner aux avis de quelqu’un, cliquez « Rejeter »." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Licence" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Accepter" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "S’abonner à cet utilisateur" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Refuser" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Rejeter cet abonnement" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Pas de requête d’autorisation !" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Abonnement autorisé" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6602,11 +6678,12 @@ msgstr "" "Vérifiez les instructions du site pour savoir comment compléter " "l’autorisation de l’abonnement. Votre jeton d’abonnement est :" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Abonnement refusé" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6616,40 +6693,65 @@ msgstr "" "Vérifiez les instructions du site pour savoir comment refuser pleinement " "l’abonnement." -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "L’URI de l’auditeur ‘%s’ n’a pas été trouvée ici." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "L’URI à laquelle vous vous êtes abonné(e) ‘%s’ est trop longue." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "" "L’URI à laquelle vous vous êtes abonné(e) ‘%s’ est un utilisateur local." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "L’URL du profil ‘%s’ est pour un utilisateur local." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"La licence du flux auquel vous êtes abonné(e), « %1$s », n’est pas compatible " +"avec la licence du site « %2$s »." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "L’URL de l’avatar ‘%s’ n’est pas valide." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Impossible de lire l’URL de l’avatar « %s »." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Format d’image invalide pour l’URL de l’avatar « %s »." #. TRANS: Page title for profile design page. @@ -7873,6 +7975,11 @@ msgstr "La modification du mot de passe n’est pas autorisée." msgid "Block" msgstr "Bloquer" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Bloquer cet utilisateur" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8335,6 +8442,11 @@ msgstr "Applications autorisées connectées" msgid "Database error" msgstr "Erreur de la base de données" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Supprimer cet utilisateur" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8371,6 +8483,21 @@ msgstr "Modifier les couleurs" msgid "Use defaults" msgstr "Utiliser les valeurs par défaut" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Restaurer les conceptions par défaut" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Revenir aux valeurs par défaut" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Sauvegarder la conception" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8478,7 +8605,6 @@ msgid "Grant this user the \"%s\" role" msgstr "Accorder le rôle « %s » à cet utilisateur" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces." @@ -8491,7 +8617,7 @@ msgid "Describe the group or topic" msgstr "Description du groupe ou du sujet" #: lib/groupeditform.php:163 -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d character or less" msgid_plural "Describe the group or topic in %d characters or less" msgstr[0] "Description du groupe ou du sujet, en %d caractère ou moins" @@ -9262,6 +9388,10 @@ msgstr "Répondre à cet avis" msgid "Reply" msgstr "Répondre" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Supprimer cet avis" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Avis repris" @@ -9542,6 +9672,10 @@ msgstr "Inviter" msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter des amis et collègues à vous rejoindre dans %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "S’abonner à cet utilisateur" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9824,3 +9958,16 @@ msgstr "XML invalide, racine XRD manquante." #, php-format msgid "Getting backup from file '%s'." msgstr "Obtention de la sauvegarde depuis le fichier « %s »." + +#~ msgid "6 or more characters" +#~ msgstr "6 caractères ou plus" + +#~ msgid "Same as password above" +#~ msgstr "Identique au mot de passe ci-dessus" + +#~ msgid "Can't save new password." +#~ msgstr "Impossible de sauvegarder le nouveau mot de passe." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "" +#~ "Adresse URL de votre page personnelle, blogue ou profil sur un autre site" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 206923ad36..da0cc3bdef 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:05:56+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:20+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -153,7 +153,7 @@ msgstr "Esa páxina non existe." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -519,7 +519,8 @@ msgstr "Non se atopou o destinatario." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" "Non pode enviar mensaxes directas a usuarios que non sexan amigos seus." @@ -605,7 +606,7 @@ msgstr "Non se puido atopar o usuario de destino." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Ese alcume xa está en uso. Probe con outro." @@ -615,7 +616,7 @@ msgstr "Ese alcume xa está en uso. Probe con outro." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "O formato do alcume non é correcto." @@ -628,7 +629,7 @@ msgstr "O formato do alcume non é correcto." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "O URL da páxina persoal non é correcto." @@ -638,7 +639,7 @@ msgstr "O URL da páxina persoal non é correcto." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "O nome completo é longo de máis (o máximo son 255 caracteres)." @@ -667,7 +668,7 @@ msgstr[1] "A descrición é longa de máis (o máximo son %d caracteres)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "A localidade é longa de máis (o máximo son 255 caracteres)." @@ -825,15 +826,15 @@ msgstr "Non está autorizado." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "Houbo un erro co seu pase. Inténteo de novo." @@ -867,7 +868,7 @@ msgstr "" #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Envío de formulario inesperado." @@ -918,19 +919,20 @@ msgstr "Conta" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Alcume" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasinal" @@ -1051,7 +1053,7 @@ msgstr "Non se atopou o método da API." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "Formato non soportado." #. TRANS: Client error displayed requesting a deleted status. @@ -1233,25 +1235,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Buscar nos contidos das notas" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." @@ -1419,7 +1422,7 @@ msgid "Not a member." msgstr "Todos os membros" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Non se puido borrar a subscrición a si mesmo." @@ -1526,9 +1529,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "O usuario non ten perfil." @@ -1583,9 +1588,10 @@ msgstr "Recortar" msgid "No file uploaded." msgstr "Non se subiu ficheiro ningún." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Escolla unha zona cadrada da imaxe para usala como avatar" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1645,7 +1651,7 @@ msgstr "Fondo" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1686,7 +1692,8 @@ msgstr "Non" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Non bloquear este usuario" #. TRANS: Button label on the user block form. @@ -1703,9 +1710,9 @@ msgid "Yes" msgstr "Si" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Bloquear este usuario" #. TRANS: Server error displayed when blocking a user fails. @@ -1869,7 +1876,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Confirmar" @@ -1899,13 +1906,13 @@ msgstr "Non se atopou a aplicación." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Non é o dono desa aplicación." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Houbo un problema co seu pase." @@ -1929,12 +1936,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Non borrar a aplicación" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Borrar a aplicación" #. TRANS: Client error when trying to delete group while not logged in. @@ -1991,13 +2000,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 #, fuzzy -msgid "Do not delete this group" +msgid "Do not delete this group." msgstr "Non borrar esta nota" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 #, fuzzy -msgid "Delete this group" +msgid "Delete this group." msgstr "Borrar o usuario" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2040,12 +2049,14 @@ msgstr "Está seguro de querer borrar esta nota?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Non borrar esta nota" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Borrar esta nota" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2082,13 +2093,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "Non borrar esta nota" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Borrar o usuario" #. TRANS: Message used as title for design settings for the site. @@ -2257,21 +2268,21 @@ msgid "Use defaults" msgstr "Utilizar os valores por defecto" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Restaurar o deseño por defecto" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Volver ao deseño por defecto" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Gardar o deseño" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2303,7 +2314,7 @@ msgid "You must be logged in to edit an application." msgstr "Ten que iniciar sesión para editar unha aplicación." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Non existe esa aplicación." @@ -2591,7 +2602,7 @@ msgid "Cannot normalize that email address." msgstr "Non se pode normalizar ese enderezo de correo electrónico" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "O enderezo de correo electrónico é incorrecto." @@ -2668,19 +2679,22 @@ msgstr "Non hai ningún enderezo ao que enviar." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Non se puido actualizar o rexistro do usuario." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Borrouse o enderezo de correo electrónico entrante." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Engadiuse un novo enderezo de correo electrónico entrante." @@ -2691,7 +2705,8 @@ msgstr "A nota xa é unha das súas favoritas!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Desmarcar como favorita" #. TRANS: Page title for first page of favorited notices. @@ -2930,12 +2945,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Non excluír deste grupo a este usuario" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Excluír deste grupo a este usuario" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3266,7 +3283,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Publicar unha MicroID para o meu enderezo de Jabber ou GTalk." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Gardáronse as preferencias." @@ -3685,43 +3703,43 @@ msgstr "Gardar" msgid "Save license settings" msgstr "Gardar a configuración de licenza" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Xa se identificou." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Nome de usuario ou contrasinal incorrectos." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "" "Houbo un erro ao configurar o usuario. Probablemente non estea autorizado " "para facelo." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Identificarse" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Identificarse no sitio" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Lembrádeme" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Identificarse automaticamente no futuro. Non se aconsella en computadoras " "compartidas!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Esqueceu ou perdeu o contrasinal?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3729,11 +3747,11 @@ msgstr "" "Por razóns de seguridade, volva introducir o seu nome de usuario e " "contrasinal antes de cambiar a súa configuración." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Identifíquese co seu nome de usuario e contrasinal." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3947,31 +3965,31 @@ msgid "You have not registered any applications yet." msgstr "Aínda non rexistrou ningunha aplicación." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Aplicacións conectadas" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 #, fuzzy msgid "The following connections exist for your account." msgstr "Permitiulle o acceso á súa conta ás seguintes aplicacións." #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Non é usuario desa aplicación." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "Non se puido revogar o acceso da aplicación: %s." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3979,20 +3997,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "Non autorizou o acceso á súa conta para ningunha aplicación." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "Non se atopou o método da API." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "Non se atopou o método da API." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Non hai perfil para a nota." @@ -4002,6 +4030,16 @@ msgstr "Non hai perfil para a nota." msgid "%1$s's status on %2$s" msgstr "Estado de %1$s en %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Non se atopou o destinatario." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4094,17 +4132,21 @@ msgstr "O pase especificado é incorrecto." msgid "Login token expired." msgstr "O pase caducou." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Caixa de saída de %1$s - páxina %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Caixa de saída de %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "Esta é a súa caixa de saída. Nela lístanse as mensaxes privadas que enviou." @@ -4131,40 +4173,45 @@ msgstr "Contrasinal anterior" msgid "New password" msgstr "Novo contrasinal" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "Seis ou máis caracteres" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "Igual ao contrasinal anterior" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Cambiar" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "O contrasinal debe conter seis ou máis caracteres." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Os contrasinais non coinciden." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "O contrasinal anterior non é correcto" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Houbo un erro ao gardar o usuario. Incorrecto." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Non se puido gardar o novo contrasinal." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Gardouse o contrasinal." @@ -4503,7 +4550,7 @@ msgid "Profile information" msgstr "Información do perfil" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" @@ -4513,7 +4560,7 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4521,13 +4568,13 @@ msgstr "Nome completo" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Páxina persoal" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "URL da súa páxina persoal, blogue ou perfil noutro sitio" @@ -4535,7 +4582,7 @@ msgstr "URL da súa páxina persoal, blogue ou perfil noutro sitio" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4543,28 +4590,29 @@ msgstr[0] "Descríbase a vostede e mailos seus intereses en %d caracteres" msgstr[1] "Descríbase a vostede e mailos seus intereses en %d caracteres" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Descríbase a vostede e mailos seus intereses" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Biografía" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Lugar" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Onde está a vivir, coma “localidade, provincia (ou comunidade), país”" @@ -4583,8 +4631,10 @@ msgstr "Etiquetas" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Etiquetas para vostede (letras salvo eñes e tiles, números, puntos, guións e " "guións baixos), separados por comas ou espazos" @@ -4596,7 +4646,8 @@ msgstr "Lingua" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Lingua escollida" #. TRANS: Dropdownlist label in form for profile settings. @@ -4611,8 +4662,9 @@ msgstr "En que fuso horario adoita estar?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Subscribirse automaticamente a quen se subscriba a min (o mellor para os " "bots)" @@ -4620,7 +4672,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4640,9 +4692,9 @@ msgstr "A lingua é longa de máis (o límite é de 50 caracteres)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Etiqueta incorrecta: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4891,6 +4943,12 @@ msgstr "Recuperar o contrasinal" msgid "Password recovery requested" msgstr "Solicitouse a recuperación do contrasinal" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Gardouse o contrasinal." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4902,12 +4960,6 @@ msgstr "Non se coñece esa acción" msgid "6 or more characters, and do not forget it!" msgstr "Seis ou máis caracteres, e non o esqueza!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "Igual ao contrasinal anterior" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4963,14 +5015,8 @@ msgstr "O contrasinal debe ter seis ou máis caracteres." msgid "Password and confirmation do not match." msgstr "O contrasinal e a confirmación non coinciden." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Non se puido gardar o novo contrasinal." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Houbo un erro ao configurar o usuario." @@ -4979,96 +5025,96 @@ msgstr "Houbo un erro ao configurar o usuario." msgid "New password successfully saved. You are now logged in." msgstr "O novo contrasinal gardouse correctamente. Agora está identificado." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Só se pode rexistrar mediante invitación." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "O código da invitación é incorrecto." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Rexistrouse correctamente" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Rexistrarse" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Non se permite o rexistro." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Non pode rexistrarse se non acepta a licenza." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "O enderezo de correo electrónico xa existe." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "O nome de usuario ou contrasinal non son correctos." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "Con este formulario pode crear unha conta nova. Entón poderá publicar notas " "e porse en contacto con amigos e compañeiros. " -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "Seis ou máis caracteres" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Correo electrónico" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "" "Só se utiliza para actualizacións, anuncios e recuperación de contrasinais" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Nome longo, preferiblemente o seu nome \"real\"" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL da súa páxina persoal, blogue ou perfil noutro sitio" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Onde está a vivir, coma “localidade, provincia (ou comunidade), país”" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "Entendo que o contido e os datos de %1$s son privados e confidenciais." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" "Os meus textos e ficheiros están protexidos polos dereitos de autor de %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "" "Os meus textos e ficheiros están protexidos polos meus propios dereitos de " "autor." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Todos os dereitos reservados." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5078,7 +5124,7 @@ msgstr "" "datos privados: contrasinais, enderezos de correo electrónico e mensaxería " "instantánea e números de teléfono." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5110,7 +5156,7 @@ msgstr "" "\n" "Grazas por rexistrarse. Esperamos que goce deste servizo." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5143,7 +5189,8 @@ msgid "User nickname" msgstr "Alcume do usuario" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Alcume do usuario ao que quere seguir" #: actions/remotesubscribe.php:132 @@ -5151,7 +5198,8 @@ msgid "Profile URL" msgstr "URL do perfil" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "" "URL do seu perfil noutro servizo de mensaxes de blogue curtas compatible" @@ -5162,7 +5210,8 @@ msgid "Subscribe" msgstr "Subscribirse" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "O enderezo URL do perfil é incorrecto (formato erróneo)" #: actions/remotesubscribe.php:167 @@ -5364,7 +5413,7 @@ msgstr "Non pode revogar os roles dos usuarios neste sitio." msgid "User doesn't have this role." msgstr "O usuario non ten este rol." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5406,87 +5455,87 @@ msgstr "Activar a saída de depuración para as sesións." msgid "Save site settings" msgstr "Gardar a configuración do sitio" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Debe estar identificado para ver unha aplicación." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Perfil da aplicación" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Icona" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Nome" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organización" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Descrición" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Estatísticas" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "Creado por %1$s - acceso %2$s por defecto - %3$d usuarios" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Accións da aplicación" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Restablecer o contrasinal ou a pregunta secreta" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Borrar" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Información da aplicación" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Clave do consumidor" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Pregunta secreta do consumidor" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "Solicitar un URL de pase" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "Acceder ao URL do pase" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "Autorizar o URL" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5494,7 +5543,7 @@ msgstr "" "Nota: sopórtanse as sinaturas HMAC-SHA1. Non se soporta o método de asinado " "con texto sinxelo." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" "Seguro que quere restablecer a súa clave e maila súa pregunta secreta de " @@ -5588,16 +5637,18 @@ msgid "Group profile" msgstr "Perfil do grupo" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Nota" @@ -5745,7 +5796,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s, páxina %2$d" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5998,7 +6049,8 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Gardar a nota do sitio" #. TRANS: Title for SMS settings. @@ -6056,7 +6108,8 @@ msgstr "Número de teléfono para os SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "" "Número de teléfono, sen signos de puntuación nin espazos en branco, co " "código da zona" @@ -6395,8 +6448,9 @@ msgstr "Etiqueta %s" msgid "User profile" msgstr "Perfil do usuario" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Fotografía" @@ -6413,6 +6467,11 @@ msgstr "" "Etiquetas para este usuario (letras, números, -, ., e _), separadas por " "comas ou espazos en branco" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Etiqueta incorrecta: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6450,7 +6509,7 @@ msgstr "Á solicitude fáltalle o ID do perfil." msgid "Unsubscribed" msgstr "Cancelouse a subscrición" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6484,7 +6543,7 @@ msgstr "Texto de benvida incorrecto. A extensión máxima é de 255 caracteres." #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, fuzzy, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Subscrición por defecto incorrecta. \"%1$s\" non é un usuario." #. TRANS: Link description in user account settings menu. @@ -6545,55 +6604,71 @@ msgstr "Permitir ou non que os usuarios poidan invitar a novos usuarios." #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "Gardar a configuración do usuario" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Autorizar a subscrición" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Verifique estes detalles para certificar que quere subscribirse ás notas " "deste usuario. Se non pediu a subscrición ás notas de alguén, prema en " "\"Rexeitar\"." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Licenza" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Aceptar" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Subscribirse a este usuario" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Rexeitar" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Rexeitar esta subscrición" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Non se solicitou a autorización!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Autorizouse a subscrición" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6603,11 +6678,12 @@ msgstr "" "ás instrucións do sitio para saber máis sobre como autorizar a subscrición. " "O pase da súa subscrición é:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Rexeitouse a subscrición" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6617,39 +6693,64 @@ msgstr "" "ás instrucións do sitio para obter máis información sobre como rexeitar " "completamente a subscrición." -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "Non se atopou o URI do seguidor, \"%s\", aquí." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "O URI do seguidor, \"%s\", é longo de máis." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "O URI do seguidor, \"%s\", é dun usuario local." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "O URL do perfil, \"%s\", pertence a un usuario local." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"A licenza \"%1$s\" das transmisións da persoa seguida non é compatible coa " +"licenza deste sitio: \"%2$s\"." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "O URL do avatar, \"%s\", é incorrecto." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Non se puido ler o URL do avatar, \"%s\"." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "O tipo de imaxe do URL do avatar, \"%s\", é incorrecto." #. TRANS: Page title for profile design page. @@ -7873,6 +7974,11 @@ msgstr "Non se permite cambiar o contrasinal" msgid "Block" msgstr "Excluír" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Bloquear este usuario" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8334,6 +8440,11 @@ msgstr "Aplicacións conectadas autorizadas" msgid "Database error" msgstr "Houbo un erro na base de datos" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Borrar o usuario" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8372,6 +8483,21 @@ msgstr "Cambiar as cores" msgid "Use defaults" msgstr "Utilizar os valores por defecto" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Restaurar o deseño por defecto" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Volver ao deseño por defecto" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Gardar o deseño" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8479,7 +8605,6 @@ msgid "Grant this user the \"%s\" role" msgstr "Outorgarlle a este usuario o rol \"%s\"" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "Entre 1 e 64 letras minúsculas ou números, sen signos de puntuación, " @@ -9264,6 +9389,10 @@ msgstr "Responder a esta nota" msgid "Reply" msgstr "Responder" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Borrar esta nota" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Repetiuse a nota" @@ -9545,6 +9674,10 @@ msgstr "Convidar" msgid "Invite friends and colleagues to join you on %s" msgstr "Convide a amigos e compañeiros a unírselle en %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Subscribirse a este usuario" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9824,3 +9957,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "Seis ou máis caracteres" + +#~ msgid "Same as password above" +#~ msgstr "Igual ao contrasinal anterior" + +#~ msgid "Can't save new password." +#~ msgstr "Non se puido gardar o novo contrasinal." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "URL da súa páxina persoal, blogue ou perfil noutro sitio" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 5267a12241..5e75fc995d 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -11,18 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:05:58+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:21+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || " "n%100==4) ? 2 : 3)\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -154,7 +154,7 @@ msgstr "Strona njeeksistuje." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -510,7 +510,8 @@ msgstr "Přijimowar njenamakany." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" "Njeje móžno, direktne powěsće wužiwarjam pósłać, kotřiž twoji přećeljo " "njejsu." @@ -595,7 +596,7 @@ msgstr "Cilowy wužiwar njeda so namakać." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Přimjeno so hižo wužiwa. Spytaj druhe." @@ -605,7 +606,7 @@ msgstr "Přimjeno so hižo wužiwa. Spytaj druhe." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Žane płaćiwe přimjeno." @@ -618,7 +619,7 @@ msgstr "Žane płaćiwe přimjeno." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "Startowa strona njeje płaćiwy URL." @@ -628,7 +629,7 @@ msgstr "Startowa strona njeje płaćiwy URL." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "Dospołne mjeno je předołho (maks. 255 znamješkow)." @@ -658,7 +659,7 @@ msgstr[3] "Wopisanje je předołho (maks. %d znamješkow)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "Městno je předołho (maks. 255 znamješkow)." @@ -815,15 +816,15 @@ msgstr "Naprašowanski token hižo awtorizowany." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -854,7 +855,7 @@ msgstr "Zmylk datoweje banki při zasunjenju oauth_token_association." #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Njewočakowane wotpósłanje formulara." @@ -899,19 +900,20 @@ msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Přimjeno" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Hesło" @@ -1029,8 +1031,8 @@ msgstr "HTTP-metoda so njepodpěruje." #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 -#, php-format -msgid "Unsupported format: %s" +#, fuzzy, php-format +msgid "Unsupported format: %s." msgstr "Njepodpěrany format: %s" #. TRANS: Client error displayed requesting a deleted status. @@ -1208,25 +1210,26 @@ msgid "Atom post must be an Atom entry." msgstr "Póst za Atom dyrbi zapisk z Atoma być." #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, php-format msgid "No content for notice %d." msgstr "Žadyn wobsah za zdźělenku %d." #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1381,7 +1384,7 @@ msgid "Not a member." msgstr "Njeje čłon." #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 msgid "Cannot delete someone else's membership." msgstr "Čłonstwo druheho njeda so zhašeć." @@ -1485,9 +1488,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Wužiwar bjez hodźaceho so profila." @@ -1542,9 +1547,9 @@ msgstr "Přirězać" msgid "No file uploaded." msgstr "Žana dataja nahrata." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +msgid "Pick a square area of the image to be your avatar." msgstr "" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1602,7 +1607,8 @@ msgstr "Zawěsćenje" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +#, fuzzy +msgid "Backup your account." msgstr "Twoje konto zawěsćić" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1640,7 +1646,8 @@ msgstr "Ně" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Tutoho wužiwarja njeblokować" #. TRANS: Button label on the user block form. @@ -1657,9 +1664,9 @@ msgid "Yes" msgstr "Haj" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Tutoho wužiwarja blokować" #. TRANS: Server error displayed when blocking a user fails. @@ -1818,7 +1825,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Wobkrućić" @@ -1847,13 +1854,13 @@ msgstr "Aplikaciska njenamakana." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Njejsy wobsedźer tuteje aplikacije." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "" @@ -1874,12 +1881,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Tutu aplikaciju njezničić" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Tutu aplikaciju zničić" #. TRANS: Client error when trying to delete group while not logged in. @@ -1930,12 +1939,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "Tuitu skupinu njezhašeć" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "Tutu skupinu zhašeć" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -1977,12 +1988,14 @@ msgstr "Chceš woprawdźe tutu zdźělenku wušmórnyć?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Tutu zdźělenku njewušmórnyć" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Tutu zdźělenku wušmórnyć" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2015,13 +2028,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 -msgid "Do not delete this user" +#, fuzzy +msgid "Do not delete this user." msgstr "Tutu skupinu njezhašeć" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Tutoho wužiwarja wušmórnyć" #. TRANS: Message used as title for design settings for the site. @@ -2184,21 +2198,21 @@ msgid "Use defaults" msgstr "Standardne hódnoty wužiwać" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Standardne designy wobnowić" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Na standard wróćo stajić" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Design składować" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2230,7 +2244,7 @@ msgid "You must be logged in to edit an application." msgstr "Dyrbiš přizjewjeny być, zo by skupinu wobdźěłał." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Aplikacija njeeksistuje." @@ -2506,7 +2520,7 @@ msgid "Cannot normalize that email address." msgstr "Tuta e-mejlowa adresa njehodźi so normalizować." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Njepłaćiwa e-mejlowa adresa." @@ -2578,18 +2592,21 @@ msgstr "Žana adresa za dochadźace e-mejle." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 msgid "Could not update user record." msgstr "Datowa sadźba wužiwarja njeda so aktualizować." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Adresa za dochadźaće e-mejle wotstronjena." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Nowa adresa za dochadźace e-mejle přidata." @@ -2600,7 +2617,8 @@ msgstr "Tuta zdźělenka je hižo faworit!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Z faworitow wotstronić" #. TRANS: Page title for first page of favorited notices. @@ -2832,12 +2850,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Tutoho wužiwarja za tutu skupinu blokować" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Tutoho wužiwarja za tutu skupinu blokować" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3143,7 +3163,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "MicroID za moju adresu Jabber/Google Talk publikować." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Nastajenja składowane." @@ -3529,39 +3550,39 @@ msgstr "Składować" msgid "Save license settings" msgstr "Licencne nastajenja składować" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Hižo přizjewjeny." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Wopačne wužiwarske mjeno abo hesło." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "Zmylk při nastajenju wužiwarja. Snano njejsy awtorizowany." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Přizjewić" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Při sydle přizjewić" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Składować" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Hesło zhubjene abo zabyte?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3569,11 +3590,11 @@ msgstr "" "Prošu zapodaj z přičinow wěstoty swoje wužiwarske mjeno znowa, prjedy hač " "změniš swoje nastajenja." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Přizjewjenje z twojim wužiwarskim mjenom a hesłom." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3773,30 +3794,30 @@ msgid "You have not registered any applications yet." msgstr "Hišće njejsy aplikacije zregistrował." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Zwjazane aplikacije" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "Slědowace zwiski za twoje konto eksistuja." #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Njejsy wužiwar tuteje aplikacije." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, php-format msgid "Unable to revoke access for application: %s." msgstr "Njemóžno přistup za aplikaciju cofnyć: %s-" #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3804,20 +3825,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "Njejsy aplikacije za wužiwanje wašeho konta awtorizował." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "Wužiwar njenamakany." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "Wotpowědna zdźělenka njenamakana." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Zdźělenka nima profil." @@ -3827,6 +3858,16 @@ msgstr "Zdźělenka nima profil." msgid "%1$s's status on %2$s" msgstr "Status %1$s na %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Přijimowar njenamakany." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -3916,17 +3957,21 @@ msgstr "Njepłaćiwe přizjewjenske znamješko podate." msgid "Login token expired." msgstr "Přizjewjenske znamješko spadnjene." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Wuchadny póst za %1$s - strona %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Wuchadny póst za %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "To je twój wuchadny póst, kotryž twoje priwatne powěsće nalistuje, kotrež sy " @@ -3954,40 +3999,42 @@ msgstr "Stare hesło" msgid "New password" msgstr "Nowe hesło" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" -msgstr "6 abo wjace znamješkow" +#: actions/passwordsettings.php:109 actions/register.php:423 +msgid "6 or more characters." +msgstr "6 abo wjace znamješkow." -#: actions/passwordsettings.php:113 -msgid "Same as password above" -msgstr "Samsne hesło kaž horjeka" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +msgid "Same as password above." +msgstr "Samsne hesło kaž horjeka." #: actions/passwordsettings.php:117 msgid "Change" msgstr "Změnić" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Hesło dyrbi 6 abo wjace znamješkow měć." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Hesle so njekryjetej." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Wopačne stare hesło" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Zmylk při składowanju wužiwarja; njepłaćiwy." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +msgid "Cannot save new password." msgstr "Nowe hesło njeda so składować." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Hesło składowane." @@ -4310,7 +4357,7 @@ msgid "Profile information" msgstr "Profilowe informacije" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1-64 małopisanych pismikow abo ličbow, žane interpunkciske znamješka abo " @@ -4319,7 +4366,7 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4327,20 +4374,20 @@ msgstr "Dospołne mjeno" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Startowa strona" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site." msgstr "URL twojeje startoweje strony, bloga abo profila na druhim sydle." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4350,28 +4397,29 @@ msgstr[2] "Wopisaj sebje a swoje zajimy z %d znamješkami" msgstr[3] "Wopisaj sebje a swoje zajimy z %d znamješkami" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Wopisaj sebje a swoje zajimy" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Biografija" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Městno" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Hdźež sy, na př. \"město, zwjazkowy kraj (abo region) , kraj\"" @@ -4391,7 +4439,8 @@ msgstr "" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" #. TRANS: Dropdownlist label in form for profile settings. @@ -4401,7 +4450,8 @@ msgstr "Rěč" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Preferowana rěč" #. TRANS: Dropdownlist label in form for profile settings. @@ -4416,14 +4466,15 @@ msgstr "W kotrym časowym pasmje sy zwjetša?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." +msgstr "Nowych wužiwarjow za tutoho wužiwarja abonować." #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4444,9 +4495,9 @@ msgstr "Mjeno rěče je předołhe (maks. 50 znamješkow)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Njepłaćiwa taflička: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4672,6 +4723,12 @@ msgstr "Hesło wobnowić" msgid "Password recovery requested" msgstr "Wobnowjenje hesła požadane" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Hesło składowane." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4682,11 +4739,6 @@ msgstr "Njeznata akcija" msgid "6 or more characters, and do not forget it!" msgstr "6 abo wjace znamješkow, a njezabudź jo!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -msgid "Same as password above." -msgstr "Samsne hesło kaž horjeka." - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4737,13 +4789,8 @@ msgstr "Hesło dyrbi 6 znamješkow abo wjace měć." msgid "Password and confirmation do not match." msgstr "Hesło a jeho wobkrućenje so njekryjetej." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -msgid "Cannot save new password." -msgstr "Nowe hesło njeda so składować." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Zmylk při nastajenju wužiwarja." @@ -4752,96 +4799,95 @@ msgstr "Zmylk při nastajenju wužiwarja." msgid "New password successfully saved. You are now logged in." msgstr "Nowe hesło bu wuspěšnje składowane. Sy nětko přizjewjeny." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Wodaj, jenož přeprošeni ludźo móžeja so registrować." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Wodaj, njepłaćiwy přeprošenski kod." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Registrowanje wuspěšne" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Registrować" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Registracija njedowolena." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Njemóžeš so registrować, jeli njepřizwoleš do licency." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "E-mejlowa adresa hižo eksistuje." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Njepłaćiwe wužiwarske mjeno abo hesło." -#: actions/register.php:351 +#: actions/register.php:340 msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" -#: actions/register.php:437 -msgid "6 or more characters." -msgstr "6 abo wjace znamješkow." - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mejl" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +msgid "Used only for updates, announcements, and password recovery." msgstr "" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Dlěše mjeno, wosebje twoje \"woprawdźite\" mjeno" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL twojeje startoweje strony, bloga abo profila na druhim sydle" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Hdźež sy, na př. \"město, zwjazkowy kraj (abo region) , kraj\"" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "Rozumju, zo wobsah a daty wot %1$s su priwatne a dowěrliwe." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Wšě prawa wuměnjenjene." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4860,7 +4906,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -4887,7 +4933,8 @@ msgid "User nickname" msgstr "Wužiwarske přimjeno" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Přimjeno wužiwarja, kotremuž chceš slědować." #: actions/remotesubscribe.php:132 @@ -4895,7 +4942,7 @@ msgid "Profile URL" msgstr "URL profila" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -4905,7 +4952,8 @@ msgid "Subscribe" msgstr "Abonować" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "Njepłaćiwy profilowy URL (wopačny format)" #: actions/remotesubscribe.php:167 @@ -5089,7 +5137,7 @@ msgstr "Njemóžeš wužiwarske róle na tutym sydle wotwołać." msgid "User doesn't have this role." msgstr "Wužiwar nima tutu rólu." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5131,93 +5179,93 @@ msgstr "" msgid "Save site settings" msgstr "Sydłowe nastajenja składować" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Dyrbiš přizjewjeny być, zo by sej aplikaciju wobhladał." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Aplikaciski profil" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Symbol" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Mjeno" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organizacija" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Wopisanje" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Statistika" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Aplikaciske akcije" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Zničić" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Aplikaciske informacije" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Kluč přetrjebowarja" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Potajnstwo přetrjebowarja" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "URL awtorizować" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "Chceš woprawdźe swój přetrjebowarski kluč a potajny kod wróćo stajić?" @@ -5302,16 +5350,18 @@ msgid "Group profile" msgstr "Skupinski profil" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Přispomnjenka" @@ -5447,7 +5497,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s z %2$s woznamjenjeny" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5681,7 +5731,8 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Sydłowu zdźělenku składować" #. TRANS: Title for SMS settings. @@ -5739,7 +5790,8 @@ msgstr "SMS telefonowe čisło" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Telefonowe čisło, bjez interpunkcije abo mjezerow, z předwolenjom" #. TRANS: Form legend for SMS preferences form. @@ -6060,8 +6112,9 @@ msgstr "" msgid "User profile" msgstr "Wužiwarski profil" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Foto" @@ -6076,6 +6129,11 @@ msgid "" "separated" msgstr "" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Njepłaćiwa taflička: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6110,7 +6168,7 @@ msgstr "Žadyn profilowy ID w naprašowanju." msgid "Unsubscribed" msgstr "Wotskazany" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6140,8 +6198,8 @@ msgstr "Njepłaćiwy powitanski tekst. Maksimalna dołhosć je 255 znamješkow." #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 -#, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +#, fuzzy, php-format +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Njepłaćiwy standardny abonement: '%1$s' wužiwar njeje." #. TRANS: Link description in user account settings menu. @@ -6201,102 +6259,141 @@ msgstr "" #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "Wužiwarske nastajenja składować" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Abonement awtorizować" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Licenca" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Akceptować" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Tutoho wužiwarja abonować" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Wotpokazać" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Tutón abonement wotpokazać" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Žane awtorizaciske naprašowanje!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Abonement awtorizowany" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Abonement wotpokazany" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " "subscription." msgstr "" -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "URI posłucharja'%s' njebu tu namakany" -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "URI posłucharki '%s' je předołhi." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." +msgstr "URI posłucharki '%s' je předołhi." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "Profilowy URL '%s' je za lokalneho wužiwarja." -#: actions/userauthorization.php:345 +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 #, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "URL awatara '%s' njeje płaćiwy" -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Awatarowy URL '%s' njeda so čitać." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Wopačny wobrazowy typ za awatarowy URL '%s'." #. TRANS: Page title for profile design page. @@ -7472,6 +7569,11 @@ msgstr "Změnjenje hesła njeje dowolene." msgid "Block" msgstr "Blokować" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Tutoho wužiwarja blokować" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -7905,6 +8007,11 @@ msgstr "Awtorizowane zwjazane aplikacije" msgid "Database error" msgstr "Zmylk w datowej bance" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Tutoho wužiwarja wušmórnyć" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -7941,6 +8048,21 @@ msgstr "Barby změnić" msgid "Use defaults" msgstr "Standardne hódnoty wužiwać" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Standardne designy wobnowić" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Na standard wróćo stajić" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Design składować" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8045,7 +8167,6 @@ msgid "Grant this user the \"%s\" role" msgstr "Tutomu wužiwarjej rólu \"%s\" dać" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 małopisanych pismikow abo ličbow, žane interpunkciske znamješka abo " @@ -8060,13 +8181,13 @@ msgid "Describe the group or topic" msgstr "Skupinu abo temu wopisać" #: lib/groupeditform.php:163 -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d character or less" msgid_plural "Describe the group or topic in %d characters or less" -msgstr[0] "Skupinu abo temu w %d znamješce abo mjenje wopisać" -msgstr[1] "Skupinu abo temu w %d znamješkomaj abo mjenje wopisać" -msgstr[2] "Skupinu abo temu w %d znamješkach abo mjenje wopisać" -msgstr[3] "Skupinu abo temu w %d znamješkach abo mjenje wopisać" +msgstr[0] "Skupinu abo temu w %d znamješce wopisać" +msgstr[1] "Skupinu abo temu w %d znamješkomaj wopisać" +msgstr[2] "Skupinu abo temu w %d znamješkach wopisać" +msgstr[3] "Skupinu abo temu w %d znamješkach wopisać" #: lib/groupeditform.php:175 msgid "" @@ -8624,9 +8745,8 @@ msgid "Send" msgstr "Pósłać" #: lib/messagelist.php:77 -#, fuzzy msgid "Messages" -msgstr "Powěsć" +msgstr "Powěsće" #: lib/messagelistitem.php:123 lib/noticelist.php:522 msgid "from" @@ -8733,6 +8853,10 @@ msgstr "Na tutu zdźělenku wotmołwić" msgid "Reply" msgstr "Wotmołwić" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Tutu zdźělenku wušmórnyć" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Zdźělenka wospjetowana" @@ -9008,6 +9132,10 @@ msgstr "Přeprosyć" msgid "Invite friends and colleagues to join you on %s" msgstr "Přećelow a kolegow přeprosyć, so tebi na %s přidružić" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Tutoho wužiwarja abonować" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9292,3 +9420,15 @@ msgstr "Njepłaćiwy XML, korjeń XRD faluje." #, php-format msgid "Getting backup from file '%s'." msgstr "Wobstaruje so zawěsćenje z dataje \"%s\"-" + +#~ msgid "6 or more characters" +#~ msgstr "6 abo wjace znamješkow" + +#~ msgid "Same as password above" +#~ msgstr "Samsne hesło kaž horjeka" + +#~ msgid "Can't save new password." +#~ msgstr "Nowe hesło njeda so składować." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "URL twojeje startoweje strony, bloga abo profila na druhim sydle" diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 49690a28c4..d07beb9f12 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:01+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:22+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" @@ -156,7 +156,7 @@ msgstr "Nincs ilyen lap." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -514,7 +514,8 @@ msgstr "A címzett felhasználó nem található." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" "Nem küldhetsz közvetlen üzenetet olyan felhasználóknak, akik nem a barátaid." @@ -599,7 +600,7 @@ msgstr "A cél felhasználó nem található." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "A becenév már foglalt. Próbálj meg egy másikat." @@ -609,7 +610,7 @@ msgstr "A becenév már foglalt. Próbálj meg egy másikat." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Nem érvényes becenév." @@ -622,7 +623,7 @@ msgstr "Nem érvényes becenév." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "A honlap érvénytelen URL-cím." @@ -632,7 +633,7 @@ msgstr "A honlap érvénytelen URL-cím." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "A teljes név túl hosszú (legfeljebb 255 karakter lehet)." @@ -661,7 +662,7 @@ msgstr[1] "A leírás túl hosszú (legfeljebb %d karakter lehet)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "A hely túl hosszú (legfeljebb 255 karakter lehet)." @@ -819,15 +820,15 @@ msgstr "Nincs jogosultságod." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "Probléma volt a munkameneted tokenjével. Kérlek, próbáld újra." @@ -858,7 +859,7 @@ msgstr "" #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Váratlan űrlapbeküldés." @@ -904,19 +905,20 @@ msgstr "Kontó" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Becenév" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Jelszó" @@ -1039,7 +1041,7 @@ msgstr "Az API-metódus nem található." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "Nem támogatott formátum." #. TRANS: Client error displayed requesting a deleted status. @@ -1218,25 +1220,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Keressünk a hírek tartalmában" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1404,7 +1407,7 @@ msgid "Not a member." msgstr "Összes tag" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Nem sikerült törölni a kedvencet." @@ -1509,9 +1512,11 @@ msgstr "Feltöltheted a személyes avatarodat. A fájl maximális mérete %s leh #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "" @@ -1569,9 +1574,10 @@ msgstr "Levágás" msgid "No file uploaded." msgstr "Nincs feltöltve fájl." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Válassz ki egy négyzet alakú területet a képből, ami az avatarod lesz" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1631,7 +1637,7 @@ msgstr "Háttér" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1669,7 +1675,8 @@ msgstr "Nem" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Ne blokkoljuk ezt a felhasználót" #. TRANS: Button label on the user block form. @@ -1686,9 +1693,9 @@ msgid "Yes" msgstr "Igen" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Felhasználó blokkolása" #. TRANS: Server error displayed when blocking a user fails. @@ -1853,7 +1860,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Megerősítés" @@ -1883,13 +1890,13 @@ msgstr "" #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "" @@ -1910,13 +1917,15 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" -msgstr "" +#, fuzzy +msgid "Do not delete this application." +msgstr "Ne töröljük ezt a hírt" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" -msgstr "" +#, fuzzy +msgid "Delete this application." +msgstr "Alkalmazás törlése" #. TRANS: Client error when trying to delete group while not logged in. #: actions/deletegroup.php:64 @@ -1973,13 +1982,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 #, fuzzy -msgid "Do not delete this group" +msgid "Do not delete this group." msgstr "Ne töröljük ezt a hírt" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 #, fuzzy -msgid "Delete this group" +msgid "Delete this group." msgstr "Töröljük ezt a felhasználót" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2020,12 +2029,14 @@ msgstr "Biztosan törölni szeretnéd ezt a hírt?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Ne töröljük ezt a hírt" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Töröljük ezt a hírt" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2062,13 +2073,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "Ne töröljük ezt a hírt" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Töröljük ezt a felhasználót" #. TRANS: Message used as title for design settings for the site. @@ -2234,21 +2245,21 @@ msgid "Use defaults" msgstr "Alapértelmezések használata" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" -msgstr "" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." +msgstr "Alapértelmezések használata" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Visszaállítás az alapértelmezettre" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Design mentése" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2280,7 +2291,7 @@ msgid "You must be logged in to edit an application." msgstr "" #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Nincs ilyen alkalmazás." @@ -2564,7 +2575,7 @@ msgid "Cannot normalize that email address." msgstr "Nem sikerült normalizálni az e-mail címet" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Érvénytelen email cím." @@ -2641,19 +2652,22 @@ msgstr "Nincs bejövő e-mail cím." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Nem sikerült frissíteni a felhasználó rekordját." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "A bejövő email címet eltávolítottuk." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Új bejövő e-mail cím hozzáadva." @@ -2664,7 +2678,8 @@ msgstr "Ez a hír már a kedvenceid között van!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Kedvenc eltávolítása" #. TRANS: Page title for first page of favorited notices. @@ -2901,12 +2916,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Ne blokkoljuk ezt a felhasználót ebből a csoportból" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Felhasználó blokkolása a csoportból" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3219,7 +3236,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "MicroID közzététele az e-mail címemhez." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Beállítások elmentve." @@ -3606,51 +3624,51 @@ msgstr "Mentés" msgid "Save license settings" msgstr "" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Már be vagy jelentkezve." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Rossz felhasználónév vagy jelszó." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "" -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Bejelentkezés" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Bejelentkezés az oldalra" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Emlékezz rám" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" "A jövőben legyen automatikus a bejelentkezés; csak ha egyedül használod a " "számítógépet!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Elvesztetted vagy elfelejtetted a jelszavad?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." msgstr "" -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "" -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3852,30 +3870,30 @@ msgid "You have not registered any applications yet." msgstr "" #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "" #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, php-format msgid "Unable to revoke access for application: %s." msgstr "" #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3883,20 +3901,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "" #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "Az API-metódus nem található." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "Az API-metódus nem található." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "" @@ -3906,6 +3934,16 @@ msgstr "" msgid "%1$s's status on %2$s" msgstr "" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "A címzett felhasználó nem található." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -3996,17 +4034,21 @@ msgstr "" msgid "Login token expired." msgstr "" -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "%1$s kimenő postafiókja - %2$d. oldal" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "%s kimenő postafiókja" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "Ez az elküldött privát üzeneteid postafiókja." @@ -4032,40 +4074,45 @@ msgstr "Régi jelszó" msgid "New password" msgstr "Új jelszó" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 vagy több karakter" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "Ugyanaz mint a fenti jelszó" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Változtassunk" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "A jelszónak legalább 6 karakterből kell állnia." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "A jelszavak nem egyeznek." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Érvénytelen a régi jelszó" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Hiba a felhasználó mentésekor; érvénytelen." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Az új jelszót nem sikerült elmenteni." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Jelszó elmentve." @@ -4408,7 +4455,7 @@ msgid "Profile information" msgstr "Személyes profil" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 kisbetű vagy számjegy, nem lehet benne írásjel vagy szóköz" @@ -4416,7 +4463,7 @@ msgstr "1-64 kisbetű vagy számjegy, nem lehet benne írásjel vagy szóköz" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4424,13 +4471,13 @@ msgstr "Teljes név" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Honlap" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "" @@ -4440,7 +4487,7 @@ msgstr "" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4448,28 +4495,29 @@ msgstr[0] "Jellemezd önmagad és az érdeklődési köröd %d karakterben" msgstr[1] "Jellemezd önmagad és az érdeklődési köröd %d karakterben" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Jellemezd önmagad és az érdeklődési köröd" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Életrajz" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Helyszín" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Merre vagy, mint pl. \"Város, Megye, Ország\"" @@ -4488,8 +4536,10 @@ msgstr "Címkék" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Címkék magadhoz (betűk, számok, -, ., és _), vesszővel vagy szóközzel " "elválasztva" @@ -4501,7 +4551,8 @@ msgstr "Nyelv" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Előnyben részesített nyelv" #. TRANS: Dropdownlist label in form for profile settings. @@ -4516,8 +4567,9 @@ msgstr "Általában melyik időzónában vagy?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Automatikusan iratkozzunk fel mindazok híreire, aki feliratkoznak a mieinkre " "(nem embereknek való)" @@ -4525,7 +4577,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4545,9 +4597,9 @@ msgstr "A nyelv túl hosszú (legfeljebb 50 karakter lehet)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Érvénytelen címke: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4780,6 +4832,12 @@ msgstr "Elfelejtett jelszó" msgid "Password recovery requested" msgstr "Jelszó visszaállítás kérvényezve" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Jelszó elmentve." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4791,12 +4849,6 @@ msgstr "Ismeretlen művelet" msgid "6 or more characters, and do not forget it!" msgstr "6 vagy több karakter, és ne felejtsd el!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "Ugyanaz mint a fenti jelszó" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4848,14 +4900,8 @@ msgstr "A jelszónak legalább 6 karakterből kell állnia." msgid "Password and confirmation do not match." msgstr "A jelszó és a megerősítése nem egyeznek meg." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Az új jelszót nem sikerült elmenteni." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Hiba a felhasználó beállításakor." @@ -4864,101 +4910,98 @@ msgstr "Hiba a felhasználó beállításakor." msgid "New password successfully saved. You are now logged in." msgstr "" -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Elnézést, de csak meghívóval lehet regisztrálni." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "" -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "A regisztráció sikeres" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Regisztráció" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "A regisztráció nem megengedett." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Nem tudsz regisztrálni ha nem fogadod el a licencet." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Az e-mail cím már létezik." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Érvénytelen felhasználónév vagy jelszó." -#: actions/register.php:351 +#: actions/register.php:340 msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 vagy több karakter" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "" "Csak frissítéskor, fontos közlemények esetén és jelszóproblémák orvoslására " "használjuk" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Hosszabb név, célszerűen a \"valódi\" neved" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "" -"A honlapodhoz, blogodhoz, vagy egy másik webhelyen lévő profilodhoz tartozó " -"URL" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Merre vagy, mint pl. \"Város, Megye, Ország\"" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4977,7 +5020,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5006,7 +5049,7 @@ msgid "User nickname" msgstr "Felhasználó beceneve" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +msgid "Nickname of the user you want to follow." msgstr "" #: actions/remotesubscribe.php:132 @@ -5014,7 +5057,7 @@ msgid "Profile URL" msgstr "Profil URL" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5024,7 +5067,7 @@ msgid "Subscribe" msgstr "Kövessük" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +msgid "Invalid profile URL (bad format)." msgstr "" #: actions/remotesubscribe.php:167 @@ -5216,7 +5259,7 @@ msgstr "" msgid "User doesn't have this role." msgstr "" -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5258,93 +5301,93 @@ msgstr "" msgid "Save site settings" msgstr "Mentsük el a webhely beállításait" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "" -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Ikon" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Név" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Szervezet" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Leírás" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Statisztika" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Törlés" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" @@ -5429,16 +5472,18 @@ msgid "Group profile" msgstr "Csoportprofil" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL-cím" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Megjegyzés" @@ -5582,7 +5627,7 @@ msgid "%1$s tagged %2$s" msgstr " %s megcímkézve" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5822,8 +5867,9 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" -msgstr "" +#, fuzzy +msgid "Save site notice." +msgstr "A webhely híre" #. TRANS: Title for SMS settings. #: actions/smssettings.php:57 @@ -5880,8 +5926,9 @@ msgstr "SMS telefonszám" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." +msgstr "1-64 kisbetű vagy számjegy, nem lehet benne írásjel vagy szóköz" #. TRANS: Form legend for SMS preferences form. #: actions/smssettings.php:191 @@ -6200,8 +6247,9 @@ msgstr "" msgid "User profile" msgstr "Felhasználói profil" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Fénykép" @@ -6216,6 +6264,11 @@ msgid "" "separated" msgstr "" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Érvénytelen címke: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6249,7 +6302,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6281,7 +6334,7 @@ msgstr "Érvénytelen SSL szerver. A maximális hossz 255 karakter." #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" #. TRANS: Link description in user account settings menu. @@ -6342,102 +6395,141 @@ msgstr "" #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" -msgstr "" +#, fuzzy +msgid "Save user settings." +msgstr "Mentsük el a webhely beállításait" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Feliratkozás engedélyezése" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Licenc" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Elfogadás" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" -msgstr "" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." +msgstr "Ezen felhasználók híreire már feliratkoztál:" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Visszautasítás" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" -msgstr "" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." +msgstr "Feliratkozás engedélyezése" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " "subscription." msgstr "" -#: actions/userauthorization.php:303 +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 #, php-format -msgid "Listener URI ‘%s’ not found here." +msgid "Listener URI \"%s\" not found here." msgstr "" -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." +msgstr "A forrás URL túl hosszú." -#: actions/userauthorization.php:314 +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 #, php-format -msgid "Listenee URI ‘%s’ is a local user." +msgid "Listenee URI \"%s\" is a local user." msgstr "" -#: actions/userauthorization.php:329 +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 #, php-format -msgid "Profile URL ‘%s’ is for a local user." +msgid "Profile URL \"%s\" is for a local user." msgstr "" -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "A hír licence ‘%1$s’ nem kompatibilis a webhely licencével ‘%2$s’." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." +msgstr "A forrás URL nem érvényes." -#: actions/userauthorization.php:350 +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 #, php-format -msgid "Can’t read avatar URL ‘%s’." +msgid "Cannot read avatar URL \"%s\"." msgstr "" -#: actions/userauthorization.php:355 +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 #, php-format -msgid "Wrong image type for avatar URL ‘%s’." +msgid "Wrong image type for avatar URL \"%s\"." msgstr "" #. TRANS: Page title for profile design page. @@ -7614,6 +7706,11 @@ msgstr "A jelszó megváltoztatása nem engedélyezett" msgid "Block" msgstr "Blokkolás" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Felhasználó blokkolása" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8028,6 +8125,11 @@ msgstr "" msgid "Database error" msgstr "Adatbázishiba" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Töröljük ezt a felhasználót" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8064,6 +8166,21 @@ msgstr "Színek megváltoztatása" msgid "Use defaults" msgstr "Alapértelmezések használata" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Visszaállítás az alapértelmezettre" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Design mentése" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8171,7 +8288,6 @@ msgid "Grant this user the \"%s\" role" msgstr "" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 kisbetű vagy számjegy, nem lehet benne írásjel vagy szóköz" @@ -8911,6 +9027,10 @@ msgstr "Válaszoljunk erre a hírre" msgid "Reply" msgstr "Válasz" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Töröljük ezt a hírt" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "A hírt megismételtük" @@ -9192,6 +9312,10 @@ msgstr "Meghívás" msgid "Invite friends and colleagues to join you on %s" msgstr "" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9461,3 +9585,17 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6 vagy több karakter" + +#~ msgid "Same as password above" +#~ msgstr "Ugyanaz mint a fenti jelszó" + +#~ msgid "Can't save new password." +#~ msgstr "Az új jelszót nem sikerült elmenteni." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "" +#~ "A honlapodhoz, blogodhoz, vagy egy másik webhelyen lévő profilodhoz " +#~ "tartozó URL" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index e8d10886ae..f8a3c85483 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:04+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -151,7 +151,7 @@ msgstr "Pagina non existe." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -517,7 +517,8 @@ msgstr "Usator destinatario non trovate." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "Non pote inviar messages directe a usatores que non es tu amicos." #. TRANS: Client error displayed trying to direct message self (403). @@ -600,7 +601,7 @@ msgstr "Non poteva trovar le usator de destination." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Pseudonymo ja in uso. Proba un altere." @@ -610,7 +611,7 @@ msgstr "Pseudonymo ja in uso. Proba un altere." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Non un pseudonymo valide." @@ -623,7 +624,7 @@ msgstr "Non un pseudonymo valide." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "Le pagina personal non es un URL valide." @@ -633,7 +634,7 @@ msgstr "Le pagina personal non es un URL valide." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "Le nomine complete es troppo longe (maximo 255 characteres)." @@ -661,7 +662,7 @@ msgstr[1] "Description es troppo longe (maximo %d characteres)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "Loco es troppo longe (maximo 255 characteres)." @@ -816,15 +817,15 @@ msgstr "Indicio de requesta jam autorisate." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "Occurreva un problema con le indicio de tu session. Per favor reproba." @@ -856,7 +857,7 @@ msgstr "" #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Submission de formulario inexpectate." @@ -907,19 +908,20 @@ msgstr "Conto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Pseudonymo" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasigno" @@ -1041,8 +1043,8 @@ msgstr "Methodo HTTP non supportate." #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 -#, php-format -msgid "Unsupported format: %s" +#, fuzzy, php-format +msgid "Unsupported format: %s." msgstr "Formato non supportate: %s" #. TRANS: Client error displayed requesting a deleted status. @@ -1221,25 +1223,26 @@ msgid "Atom post must be an Atom entry." msgstr "Message Atom debe esser un entrata Atom." #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "Solmente le activitates POST es possibile." #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "Impossibile manear le typo de objecto de activitate \"%s\"." #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, php-format msgid "No content for notice %d." msgstr "Nulle contento pro nota %d." #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1394,7 +1397,7 @@ msgid "Not a member." msgstr "Non es membro." #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 msgid "Cannot delete someone else's membership." msgstr "Non pote deler le membrato de un altere persona." @@ -1498,9 +1501,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Usator sin profilo correspondente" @@ -1555,9 +1560,10 @@ msgstr "Taliar" msgid "No file uploaded." msgstr "Nulle file incargate." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Selige un area quadrate del imagine pro facer lo tu avatar" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1621,7 +1627,8 @@ msgstr "Copia de reserva" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +#, fuzzy +msgid "Backup your account." msgstr "Facer un copia de reserva de tu conto" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1662,7 +1669,8 @@ msgstr "No" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Non blocar iste usator" #. TRANS: Button label on the user block form. @@ -1679,9 +1687,9 @@ msgid "Yes" msgstr "Si" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Blocar iste usator" #. TRANS: Server error displayed when blocking a user fails. @@ -1844,7 +1852,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Confirmar" @@ -1873,13 +1881,13 @@ msgstr "Application non trovate." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Tu non es le proprietario de iste application." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Il habeva un problema con tu indicio de session." @@ -1903,12 +1911,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Non deler iste application" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Deler iste application" #. TRANS: Client error when trying to delete group while not logged in. @@ -1962,12 +1972,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "Non deler iste gruppo" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "Deler iste gruppo" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2010,12 +2022,14 @@ msgstr "Es tu secur de voler deler iste nota?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Non deler iste nota" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Deler iste nota" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2050,13 +2064,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 -msgid "Do not delete this user" +#, fuzzy +msgid "Do not delete this user." msgstr "Non deler iste usator" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Deler iste usator" #. TRANS: Message used as title for design settings for the site. @@ -2222,21 +2237,21 @@ msgid "Use defaults" msgstr "Usar predefinitiones" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Restaurar apparentias predefinite" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Revenir al predefinitiones" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Salveguardar apparentia" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2268,7 +2283,7 @@ msgid "You must be logged in to edit an application." msgstr "Tu debe aperir un session pro modificar un application." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Application non trovate." @@ -2549,7 +2564,7 @@ msgid "Cannot normalize that email address." msgstr "Non pote normalisar iste adresse de e-mail." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Adresse de e-mail invalide." @@ -2624,18 +2639,21 @@ msgstr "Nulle adresse de e-mail entrante." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 msgid "Could not update user record." msgstr "Non poteva actualisar le datos del usator." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Adresse de e-mail entrante removite." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Nove adresse de e-mail entrante addite." @@ -2646,7 +2664,8 @@ msgstr "Iste nota es ja favorite!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Disfavorir favorite" #. TRANS: Page title for first page of favorited notices. @@ -2886,12 +2905,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Non blocar iste usator de iste gruppo" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Blocar iste usator de iste gruppo" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3215,7 +3236,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Publicar un MicroID pro mi adresse Jabber/Google Talk." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Preferentias confirmate." @@ -3627,42 +3649,42 @@ msgstr "Salveguardar" msgid "Save license settings" msgstr "Salveguardar configurationes de licentia" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Tu es jam authenticate." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Nomine de usator o contrasigno incorrecte." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "" "Error de acceder al conto de usator. Tu probabilemente non es autorisate." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Aperir session" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Authenticar te a iste sito" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Memorar me" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Aperir session automaticamente in le futuro; non pro computatores usate in " "commun!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Contrasigno perdite o oblidate?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3670,11 +3692,11 @@ msgstr "" "Pro motivos de securitate, per favor re-entra tu nomine de usator e " "contrasigno ante de cambiar tu configurationes." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Aperi un session con tu nomine de usator e contrasigno." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3883,30 +3905,30 @@ msgid "You have not registered any applications yet." msgstr "Tu non ha ancora registrate alcun application." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Applicationes connectite" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "Le sequente connexiones existe pro tu conto." #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Tu non es usator de iste application." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, php-format msgid "Unable to revoke access for application: %s." msgstr "Impossibile revocar le accesso del application: %s." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3916,14 +3938,14 @@ msgstr "" "comenciante con %2$s." #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "Tu non ha autorisate alcun application a usar tu conto." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " @@ -3932,6 +3954,16 @@ msgstr "" "Es tu un programmator? [Registra un application cliente OAuth](%s) a usar " "con iste installation de StatusNet." +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "Usator non trovate." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "Nota genitor non trovate." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Le nota ha nulle profilo." @@ -3941,6 +3973,16 @@ msgstr "Le nota ha nulle profilo." msgid "%1$s's status on %2$s" msgstr "Le stato de %1$s in %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Usator destinatario non trovate." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4031,17 +4073,21 @@ msgstr "Indicio de identification invalide specificate." msgid "Login token expired." msgstr "Le indicio de identification ha expirate." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Cassa de exito de %1$s - pagina %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Cassa de exito pro %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "Isto es tu cassa de exito, que lista le messages private que tu ha inviate." @@ -4068,40 +4114,42 @@ msgstr "Ancian contrasigno" msgid "New password" msgstr "Nove contrasigno" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" -msgstr "6 o plus characteres" +#: actions/passwordsettings.php:109 actions/register.php:423 +msgid "6 or more characters." +msgstr "6 o plus characteres." -#: actions/passwordsettings.php:113 -msgid "Same as password above" -msgstr "Identic al contrasigno hic supra" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +msgid "Same as password above." +msgstr "Identic al contrasigno hic supra." #: actions/passwordsettings.php:117 msgid "Change" msgstr "Cambiar" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Le contrasigno debe haber al minus 6 characteres." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Le contrasignos non corresponde." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Ancian contrasigno incorrecte" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Error de salveguardar le usator; invalide." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +msgid "Cannot save new password." msgstr "Non pote salveguardar le nove contrasigno." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Contrasigno salveguardate." @@ -4428,14 +4476,14 @@ msgid "Profile information" msgstr "Informationes del profilo" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 minusculas o numeros, sin punctuation o spatios." #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4443,20 +4491,20 @@ msgstr "Nomine complete" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Pagina personal" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site." msgstr "URL de tu pagina personal, blog o profilo in un altere sito." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4464,28 +4512,29 @@ msgstr[0] "Describe te e tu interesses in %d character" msgstr[1] "Describe te e tu interesses in %d characteres" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Describe te e tu interesses" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Bio" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Loco" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Ubi tu es, como \"Citate, Stato (o Region), Pais\"" @@ -4504,8 +4553,10 @@ msgstr "Etiquettas" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Etiquettas pro te (litteras, numeros, -, ., e _), separate per commas o " "spatios" @@ -4517,7 +4568,8 @@ msgstr "Lingua" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Lingua preferite" #. TRANS: Dropdownlist label in form for profile settings. @@ -4532,15 +4584,16 @@ msgstr "In que fuso horari es tu normalmente?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Subscriber me automaticamente a qui se subscribe a me (utile pro non-humanos)" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4559,9 +4612,9 @@ msgstr "Lingua es troppo longe (maximo 50 characteres)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Etiquetta invalide: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4801,6 +4854,12 @@ msgstr "Recuperar contrasigno" msgid "Password recovery requested" msgstr "Recuperation de contrasigno requestate" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Contrasigno salveguardate." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4811,11 +4870,6 @@ msgstr "Action incognite" msgid "6 or more characters, and do not forget it!" msgstr "6 o plus characteres, e non oblida lo!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -msgid "Same as password above." -msgstr "Identic al contrasigno hic supra." - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4867,13 +4921,8 @@ msgstr "Le contrasigno debe haber 6 characteres o plus." msgid "Password and confirmation do not match." msgstr "Contrasigno e confirmation non corresponde." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -msgid "Cannot save new password." -msgstr "Non pote salveguardar le nove contrasigno." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Error durante le configuration del usator." @@ -4882,94 +4931,95 @@ msgstr "Error durante le configuration del usator." msgid "New password successfully saved. You are now logged in." msgstr "Nove contrasigno salveguardate con successo. Tu session es ora aperte." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Pardono, solmente le personas invitate pote registrar se." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Pardono, le codice de invitation es invalide." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Registration succedite" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Crear conto" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Creation de conto non permittite." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Tu non pote crear un conto si tu non accepta le licentia." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Le adresse de e-mail existe ja." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Nomine de usator o contrasigno invalide." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "Con iste formulario tu pote crear un nove conto. Postea, tu pote publicar " "notas e mitter te in contacto con amicos e collegas. " -#: actions/register.php:437 -msgid "6 or more characters." -msgstr "6 o plus characteres." - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "" "Usate solmente pro actualisationes, notificationes e recuperation de " "contrasigno" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Nomine plus longe, preferibilemente tu nomine \"real\"" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL de tu pagina personal, blog o profilo in un altere sito" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Ubi tu es, como \"Citate, Stato (o Region), Pais\"" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" "io comprende que le contento e datos de %1$s es private e confidential." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "Le derecto de autor pro mi texto e files es in possession de %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "Le derecto de autor pro mi texto e files resta in mi possession." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Tote le derectos reservate." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4979,7 +5029,7 @@ msgstr "" "contrasigno, adresse de e-mail, adresse de messageria instantanee, numero de " "telephono." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5011,7 +5061,7 @@ msgstr "" "\n" "Gratias pro inscriber te, e nos spera que iste servicio te place." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5044,7 +5094,8 @@ msgid "User nickname" msgstr "Pseudonymo del usator" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Le pseudonymo del usator que tu vole sequer" #: actions/remotesubscribe.php:132 @@ -5052,7 +5103,8 @@ msgid "Profile URL" msgstr "URL del profilo" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "URL de tu profilo in un altere servicio de microblogging compatibile" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5062,7 +5114,8 @@ msgid "Subscribe" msgstr "Subscriber" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "URL de profilo invalide (mal formato)" #: actions/remotesubscribe.php:167 @@ -5260,7 +5313,7 @@ msgstr "Tu non pote revocar rolos de usatores in iste sito." msgid "User doesn't have this role." msgstr "Le usator non ha iste rolo." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5302,87 +5355,87 @@ msgstr "Producer informationes technic pro cercar defectos in sessiones." msgid "Save site settings" msgstr "Salveguardar configurationes del sito" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Tu debe aperir un session pro vider un application." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Profilo del application" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Icone" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Nomine" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisation" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Description" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Statisticas" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "Create per %1$s - accesso %2$s per predefinition - %3$d usatores" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Actiones de application" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Reinitialisar clave e secreto" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Deler" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Info del application" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Clave de consumitor" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Secreto de consumitor" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "URL del indicio de requesta" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "URL del indicio de accesso" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "URL de autorisation" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5390,7 +5443,7 @@ msgstr "" "Nota: Nos supporta le signaturas HMAC-SHA1. Nos non accepta signaturas in " "texto simple." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "Es tu secur de voler reinitialisar tu clave e secreto de consumitor?" @@ -5483,16 +5536,18 @@ msgid "Group profile" msgstr "Profilo del gruppo" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Nota" @@ -5637,7 +5692,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s etiquettate con %2$s" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5887,7 +5942,8 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Salveguardar aviso del sito" #. TRANS: Title for SMS settings. @@ -5945,7 +6001,8 @@ msgstr "Numero de telephono pro SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Numero de telephono, sin punctuation o spatios, con indicativo" #. TRANS: Form legend for SMS preferences form. @@ -6281,8 +6338,9 @@ msgstr "Etiquetta %s" msgid "User profile" msgstr "Profilo del usator" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Photo" @@ -6299,6 +6357,11 @@ msgstr "" "Etiquettas pro iste usator (litteras, numeros, -, . e _), separate per " "commas o spatios" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Etiquetta invalide: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6335,7 +6398,7 @@ msgstr "Nulle ID de profilo in requesta." msgid "Unsubscribed" msgstr "Subscription cancellate" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6367,8 +6430,8 @@ msgstr "Texto de benvenita invalide. Longitude maxime es 255 characteres." #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 -#, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +#, fuzzy, php-format +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Subscription predefinite invalide: '%1$s' non es usator." #. TRANS: Link description in user account settings menu. @@ -6428,54 +6491,70 @@ msgstr "Si le usatores pote invitar nove usatores." #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "Salveguardar configurationes de usator" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Autorisar subscription" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Per favor verifica iste detalios pro assecurar te que tu vole subscriber te " "al notas de iste usator. Si tu non ha requestate isto, clicca \"Rejectar\"." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Licentia" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Acceptar" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Subscriber a iste usator" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Rejectar" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Rejectar iste subscription" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Nulle requesta de autorisation!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Subscription autorisate" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6485,11 +6564,12 @@ msgstr "" "recipite. Lege in le instructiones del sito in question como autorisar le " "subscription. Tu indicio de subscription es:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Subscription rejectate" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6499,39 +6579,64 @@ msgstr "" "recipite. Lege in le instructiones del sito in question como rejectar " "completemente le subscription." -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "URI de ascoltator ‘%s’ non trovate hic." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "URI de ascoltato ‘%s’ es troppo longe." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "URI de ascoltato ‘%s’ es un usator local." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "URL de profilo ‘%s’ es de un usator local." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"Le licentia del fluxo que tu ascolta, ‘%1$s’, non es compatibile con le " +"licentia del sito ‘%2$s’." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "URL de avatar ‘%s’ non es valide." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Non pote leger URL de avatar ‘%s’." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Typo de imagine incorrecte pro URL de avatar ‘%s’." #. TRANS: Page title for profile design page. @@ -7744,6 +7849,11 @@ msgstr "Cambio del contrasigno non permittite." msgid "Block" msgstr "Blocar" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Blocar iste usator" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8195,6 +8305,11 @@ msgstr "Applicationes autorisate connectite" msgid "Database error" msgstr "Error de base de datos" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Deler iste usator" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8231,6 +8346,21 @@ msgstr "Cambiar colores" msgid "Use defaults" msgstr "Usar predefinitiones" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Restaurar apparentias predefinite" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Revenir al predefinitiones" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Salveguardar apparentia" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8335,9 +8465,8 @@ msgid "Grant this user the \"%s\" role" msgstr "Conceder le rolo \"%s\" a iste usator" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 minusculas o numeros, sin punctuation o spatios." +msgstr "1-64 minusculas o numeros, sin punctuation o spatios" #: lib/groupeditform.php:156 msgid "URL of the homepage or blog of the group or topic." @@ -8348,11 +8477,11 @@ msgid "Describe the group or topic" msgstr "Describe le gruppo o topico" #: lib/groupeditform.php:163 -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d character or less" msgid_plural "Describe the group or topic in %d characters or less" -msgstr[0] "Describe le gruppo o topico in %d character o minus." -msgstr[1] "Describe le gruppo o topico in %d characteres o minus." +msgstr[0] "Describe le gruppo o topico in %d character o minus" +msgstr[1] "Describe le gruppo o topico in %d characteres o minus" #: lib/groupeditform.php:175 msgid "" @@ -9002,9 +9131,8 @@ msgid "Send" msgstr "Inviar" #: lib/messagelist.php:77 -#, fuzzy msgid "Messages" -msgstr "Message" +msgstr "Messages" #: lib/messagelistitem.php:123 lib/noticelist.php:522 msgid "from" @@ -9110,6 +9238,10 @@ msgstr "Responder a iste nota" msgid "Reply" msgstr "Responder" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Deler iste nota" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Nota repetite" @@ -9385,6 +9517,10 @@ msgstr "Invitar" msgid "Invite friends and colleagues to join you on %s" msgstr "Invitar amicos e collegas a accompaniar te in %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Subscriber a iste usator" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9661,3 +9797,15 @@ msgstr "XML invalide, radice XRD mancante." #, php-format msgid "Getting backup from file '%s'." msgstr "Obtene copia de reserva ex file '%s'." + +#~ msgid "6 or more characters" +#~ msgstr "6 o plus characteres" + +#~ msgid "Same as password above" +#~ msgstr "Identic al contrasigno hic supra" + +#~ msgid "Can't save new password." +#~ msgstr "Non pote salveguardar le nove contrasigno." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "URL de tu pagina personal, blog o profilo in un altere sito" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 22b17fa0fc..c821a9be37 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:06+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:25+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -155,7 +155,7 @@ msgstr "Pagina inesistente." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -519,7 +519,8 @@ msgstr "Destinatario non trovato." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "Non puoi inviare messaggi diretti a utenti che non sono tuoi amici." #. TRANS: Client error displayed trying to direct message self (403). @@ -604,7 +605,7 @@ msgstr "Impossibile trovare l'utente destinazione." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Soprannome già in uso. Prova con un altro." @@ -614,7 +615,7 @@ msgstr "Soprannome già in uso. Prova con un altro." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Non è un soprannome valido." @@ -627,7 +628,7 @@ msgstr "Non è un soprannome valido." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "L'indirizzo della pagina web non è valido." @@ -637,7 +638,7 @@ msgstr "L'indirizzo della pagina web non è valido." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Nome troppo lungo (max 255 caratteri)." @@ -666,7 +667,7 @@ msgstr[1] "La descrizione è troppo lunga (max %d caratteri)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Ubicazione troppo lunga (max 255 caratteri)." @@ -825,15 +826,15 @@ msgstr "Autorizzazione non presente." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -866,7 +867,7 @@ msgstr "Errore nel database nell'inserire l'applicazione utente OAuth." #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Invio del modulo inaspettato." @@ -918,19 +919,20 @@ msgstr "Account" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Soprannome" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Password" @@ -1054,7 +1056,7 @@ msgstr "Metodo delle API non trovato." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "Formato non supportato." #. TRANS: Client error displayed requesting a deleted status. @@ -1234,25 +1236,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Trova contenuto dei messaggi" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." @@ -1419,7 +1422,7 @@ msgid "Not a member." msgstr "Tutti i membri" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Impossibile salvare l'abbonamento." @@ -1525,9 +1528,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Utente senza profilo corrispondente." @@ -1585,9 +1590,10 @@ msgstr "Ritaglia" msgid "No file uploaded." msgstr "Nessun file caricato." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Scegli un'area quadrata per la tua immagine personale" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1647,7 +1653,7 @@ msgstr "Sfondo" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1688,7 +1694,8 @@ msgstr "No" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Non bloccare questo utente" #. TRANS: Button label on the user block form. @@ -1705,9 +1712,9 @@ msgid "Yes" msgstr "Sì" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Blocca questo utente" #. TRANS: Server error displayed when blocking a user fails. @@ -1872,7 +1879,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Conferma" @@ -1902,13 +1909,13 @@ msgstr "Applicazione non trovata." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Questa applicazione non è di tua proprietà." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Si è verificato un problema con il tuo token di sessione." @@ -1931,12 +1938,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Non eliminare l'applicazione" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Elimina l'applicazione" #. TRANS: Client error when trying to delete group while not logged in. @@ -1994,13 +2003,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 #, fuzzy -msgid "Do not delete this group" +msgid "Do not delete this group." msgstr "Non eliminare il messaggio" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 #, fuzzy -msgid "Delete this group" +msgid "Delete this group." msgstr "Elimina questo utente" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2043,12 +2052,14 @@ msgstr "Vuoi eliminare questo messaggio?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Non eliminare il messaggio" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Elimina questo messaggio" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2085,13 +2096,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "Non eliminare il messaggio" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Elimina questo utente" #. TRANS: Message used as title for design settings for the site. @@ -2259,21 +2270,21 @@ msgid "Use defaults" msgstr "Usa predefiniti" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Ripristina i valori predefiniti" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Reimposta i valori predefiniti" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Salva aspetto" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2305,7 +2316,7 @@ msgid "You must be logged in to edit an application." msgstr "Devi eseguire l'accesso per modificare un'applicazione." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Nessuna applicazione." @@ -2590,7 +2601,7 @@ msgid "Cannot normalize that email address." msgstr "Impossibile normalizzare quell'indirizzo email" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Non è un indirizzo email valido." @@ -2667,19 +2678,22 @@ msgstr "Nessun indirizzo email di ricezione." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Impossibile aggiornare il record dell'utente." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Indirizzo email di ricezione rimosso." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Nuovo indirizzo email di ricezione aggiunto." @@ -2690,7 +2704,8 @@ msgstr "Questo messaggio è già un preferito!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Rimuovi preferito" #. TRANS: Page title for first page of favorited notices. @@ -2931,12 +2946,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Non bloccare l'utente da questo gruppo" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Blocca l'utente da questo gruppo" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3267,7 +3284,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Pubblica un MicroID per il mio indirizzo Jabber/GTalk" #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Preferenze salvate." @@ -3688,39 +3706,39 @@ msgstr "Salva" msgid "Save license settings" msgstr "Salva impostazioni licenza" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Accesso già effettuato." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Nome utente o password non corretto." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "Errore nell'impostare l'utente. Forse non hai l'autorizzazione." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Accedi" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Accedi al sito" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Ricordami" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "Accedi automaticamente in futuro; non per computer condivisi!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Password persa o dimenticata?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3728,11 +3746,11 @@ msgstr "" "Per motivi di sicurezza, è necessario che tu inserisca il tuo nome utente e " "la tua password prima di modificare le impostazioni." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Accedi con nome utente e password." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3945,31 +3963,31 @@ msgid "You have not registered any applications yet." msgstr "Non hai ancora registrato alcuna applicazione." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Applicazioni collegate" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 #, fuzzy msgid "The following connections exist for your account." msgstr "Hai consentito alle seguenti applicazioni di accedere al tuo account." #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Non sei un utente di quella applicazione." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "Impossibile revocare l'accesso per l'applicazione: %s." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3977,20 +3995,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "Non hai autorizzato alcuna applicazione all'uso del tuo account." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "Metodo delle API non trovato." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "Metodo delle API non trovato." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Il messaggio non ha un profilo." @@ -4000,6 +4028,16 @@ msgstr "Il messaggio non ha un profilo." msgid "%1$s's status on %2$s" msgstr "Stato di %1$s su %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Destinatario non trovato." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4090,17 +4128,21 @@ msgstr "Token di accesso specificato non valido." msgid "Login token expired." msgstr "Token di accesso scaduto." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Casella posta inviata di %s - pagina %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Casella posta inviata di %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "Questa è la casella della tua posta inviata, contiene i messaggi privati che " @@ -4128,40 +4170,45 @@ msgstr "Vecchia password" msgid "New password" msgstr "Nuova password" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 o più caratteri" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "Stessa password di sopra" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Modifica" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "La password deve essere di 6 o più caratteri." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Le password non corrispondono." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Vecchia password non corretta" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Errore nel salvare l'utente; non valido." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Impossibile salvare la nuova password." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Password salvata." @@ -4506,7 +4553,7 @@ msgid "Profile information" msgstr "Informazioni sul profilo" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" @@ -4515,7 +4562,7 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4523,13 +4570,13 @@ msgstr "Nome" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Pagina web" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "URL della tua pagina web, blog o profilo su un altro sito" @@ -4537,7 +4584,7 @@ msgstr "URL della tua pagina web, blog o profilo su un altro sito" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4545,28 +4592,29 @@ msgstr[0] "Descriviti assieme ai tuoi interessi in %d caratteri" msgstr[1] "Descriviti assieme ai tuoi interessi in %d caratteri" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Descrivi te e i tuoi interessi" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Biografia" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Ubicazione" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Dove ti trovi, tipo \"città, regione, stato\"" @@ -4585,8 +4633,10 @@ msgstr "Etichette" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Le tue etichette (lettere, numeri, -, . e _), separate da virgole o spazi" @@ -4597,7 +4647,8 @@ msgstr "Lingua" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Lingua preferita" #. TRANS: Dropdownlist label in form for profile settings. @@ -4612,8 +4663,9 @@ msgstr "In che fuso orario risiedi solitamente?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Abbonami automaticamente a chi si abbona ai miei messaggi (utile per i non-" "umani)" @@ -4621,7 +4673,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4641,9 +4693,9 @@ msgstr "La lingua è troppo lunga (max 50 caratteri)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Etichetta non valida: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4885,6 +4937,12 @@ msgstr "Recupera la password" msgid "Password recovery requested" msgstr "Richiesta password di ripristino" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Password salvata." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4896,12 +4954,6 @@ msgstr "Azione sconosciuta" msgid "6 or more characters, and do not forget it!" msgstr "6 o più caratteri, e non dimenticarla!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "Stessa password di sopra" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4955,14 +5007,8 @@ msgstr "La password deve essere lunga almeno 6 caratteri." msgid "Password and confirmation do not match." msgstr "La password e la conferma non corrispondono." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Impossibile salvare la nuova password." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Errore nell'impostare l'utente." @@ -4971,94 +5017,94 @@ msgstr "Errore nell'impostare l'utente." msgid "New password successfully saved. You are now logged in." msgstr "Nuova password salvata con successo. Hai effettuato l'accesso." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Solo le persone invitate possono registrarsi." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Codice di invito non valido." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Registrazione riuscita" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Registrati" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Registrazione non consentita." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Non puoi registrarti se non accetti la licenza." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Indirizzo email già esistente." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Nome utente o password non valido." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "Attraverso questo modulo puoi creare un nuovo account con cui potrai " "successivamente inviare messaggi e metterti in contatto con i tuoi amici e " "colleghi. " -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 o più caratteri" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Email" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "Usata solo per aggiornamenti, annunci e recupero password" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Nome completo, preferibilmente il tuo \"vero\" nome" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL della tua pagina web, blog o profilo su un altro sito" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Dove ti trovi, tipo \"città, regione, stato\"" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" "Comprendo che i contenuti e i dati di %1$s sono privati e confidenziali." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "I miei testi e i miei file sono copyright di %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "I miei testi e file restano sotto il mio diretto copyright." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Tutti i diritti riservati." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5068,7 +5114,7 @@ msgstr "" "dati personali: password, indirizzo email, indirizzo messaggistica " "istantanea e numero di telefono." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5102,7 +5148,7 @@ msgstr "" "Grazie per la tua iscrizione e speriamo tu possa divertiti usando questo " "servizio." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5135,7 +5181,8 @@ msgid "User nickname" msgstr "Soprannome dell'utente" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Soprannome dell'utente che vuoi seguire" #: actions/remotesubscribe.php:132 @@ -5143,7 +5190,8 @@ msgid "Profile URL" msgstr "URL del profilo" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "URL del tuo profilo su un altro servizio di microblog compatibile" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5153,7 +5201,8 @@ msgid "Subscribe" msgstr "Abbonati" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "URL del profilo non valido (formato errato)" #: actions/remotesubscribe.php:167 @@ -5353,7 +5402,7 @@ msgstr "Non puoi revocare i ruoli degli utenti su questo sito." msgid "User doesn't have this role." msgstr "L'utente non ricopre questo ruolo." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5395,87 +5444,87 @@ msgstr "Abilita il debug per le sessioni" msgid "Save site settings" msgstr "Salva impostazioni" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Devi eseguire l'accesso per visualizzare un'applicazione." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Profilo applicazione" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Icona" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Nome" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organizzazione" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Descrizione" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Statistiche" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "creata da %1$s - %2$s accessi predefiniti - %3$d utenti" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Azioni applicazione" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Reimposta chiave e segreto" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Elimina" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Informazioni applicazione" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Chiave consumatore" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Segreto consumatore" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "URL token di richiesta" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "URL token di accesso" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "URL di autorizzazione" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5483,7 +5532,7 @@ msgstr "" "Nota: sono supportate firme HMAC-SHA1, ma non è supportato il metodo di " "firma di testo in chiaro." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "Ripristinare la chiave e il segreto?" @@ -5574,16 +5623,18 @@ msgid "Group profile" msgstr "Profilo del gruppo" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Nota" @@ -5730,7 +5781,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s, pagina %2$s" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5980,7 +6031,8 @@ msgstr "Testo messaggio del sito (massimo 255 caratteri, HTML consentito)" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Salva messaggio" #. TRANS: Title for SMS settings. @@ -6038,7 +6090,8 @@ msgstr "Numero di telefono per SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Numero di telefono, senza punteggiatura o spazi, con il prefisso" #. TRANS: Form legend for SMS preferences form. @@ -6376,8 +6429,9 @@ msgstr "Etichetta %s" msgid "User profile" msgstr "Profilo utente" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Fotografia" @@ -6394,6 +6448,11 @@ msgstr "" "Etichette per questo utente (lettere, numeri, -, . e _), separate da virgole " "o spazi" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Etichetta non valida: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6431,7 +6490,7 @@ msgstr "Nessun ID di profilo nella richiesta." msgid "Unsubscribed" msgstr "Abbonamento annullato" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6466,7 +6525,7 @@ msgstr "" #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, fuzzy, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Abbonamento predefinito non valido: \"%1$s\" non è un utente." #. TRANS: Link description in user account settings menu. @@ -6527,54 +6586,70 @@ msgstr "Indica se consentire agli utenti di invitarne di nuovi" #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "Salva impostazioni utente" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Autorizza abbonamento" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " "messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Rifiuta\"." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Licenza" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Accetta" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Abbonati a questo utente" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Rifiuta" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Rifiuta questo abbonamento" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Nessuna richiesta di autorizzazione!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Abbonamento autorizzato" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6584,11 +6659,12 @@ msgstr "" "richiamo. Controlla le istruzioni del sito per i dettagli su come " "autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Abbonamento rifiutato" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6598,39 +6674,64 @@ msgstr "" "richiamo. Controlla le istruzioni del sito per i dettagli su come rifiutare " "completamente l'abbonamento." -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "URL \"%s\" dell'ascoltatore non trovato qui." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "L'URI \"%s\" di colui che si ascolta è troppo lungo." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "L'URI \"%s\" di colui che si ascolta è un utente locale." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "L'URL \"%s\" del profilo è per un utente locale." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"La licenza \"%1$s\" dello stream di chi ascolti non è compatibile con la " +"licenza \"%2$s\" di questo sito." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "L'URL \"%s\" dell'immagine non è valido." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Impossibile leggere l'URL \"%s\" dell'immagine." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Tipo di immagine errata per l'URL \"%s\"." #. TRANS: Page title for profile design page. @@ -7852,6 +7953,11 @@ msgstr "La modifica della password non è permessa" msgid "Block" msgstr "Blocca" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Blocca questo utente" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8313,6 +8419,11 @@ msgstr "Applicazioni collegate autorizzate" msgid "Database error" msgstr "Errore del database" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Elimina questo utente" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8351,6 +8462,21 @@ msgstr "Modifica colori" msgid "Use defaults" msgstr "Usa predefiniti" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Ripristina i valori predefiniti" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Reimposta i valori predefiniti" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Salva aspetto" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8458,7 +8584,6 @@ msgid "Grant this user the \"%s\" role" msgstr "Concedi a questo utente il ruolo \"%s\"" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 lettere minuscole o numeri, senza spazi o simboli di punteggiatura" @@ -9240,6 +9365,10 @@ msgstr "Rispondi a questo messaggio" msgid "Reply" msgstr "Rispondi" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Elimina questo messaggio" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Messaggio ripetuto" @@ -9521,6 +9650,10 @@ msgstr "Invita" msgid "Invite friends and colleagues to join you on %s" msgstr "Invita amici e colleghi a seguirti su %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Abbonati a questo utente" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9796,3 +9929,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6 o più caratteri" + +#~ msgid "Same as password above" +#~ msgstr "Stessa password di sopra" + +#~ msgid "Can't save new password." +#~ msgstr "Impossibile salvare la nuova password." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "URL della tua pagina web, blog o profilo su un altro sito" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 68a8bd19d5..8134a5b1d5 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:08+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:26+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -157,7 +157,7 @@ msgstr "そのようなページはありません。" #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -516,7 +516,8 @@ msgstr "受け取り手のユーザが見つかりません。" #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "友人でないユーザにダイレクトメッセージを送ることはできません。" #. TRANS: Client error displayed trying to direct message self (403). @@ -603,7 +604,7 @@ msgstr "ターゲットユーザーを見つけられません。" #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。" @@ -613,7 +614,7 @@ msgstr "そのニックネームは既に使用されています。他のもの #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "有効なニックネームではありません。" @@ -626,7 +627,7 @@ msgstr "有効なニックネームではありません。" #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "ホームページのURLが不適切です。" @@ -636,7 +637,7 @@ msgstr "ホームページのURLが不適切です。" #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "フルネームが長すぎます。(255字まで)" @@ -664,7 +665,7 @@ msgstr[0] "記述が長すぎます。(最長%d字)" #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "場所が長すぎます。(255字まで)" @@ -823,15 +824,15 @@ msgstr "認証されていません。" #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "あなたのセッショントークンに問題がありました。再度お試しください。" @@ -863,7 +864,7 @@ msgstr "OAuth アプリケーションユーザの追加時DBエラー。" #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "予期せぬフォーム送信です。" @@ -909,19 +910,20 @@ msgstr "アカウント" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "ニックネーム" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "パスワード" @@ -1046,7 +1048,7 @@ msgstr "API メソッドが見つかりません。" #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "サポート外の形式です。" #. TRANS: Client error displayed requesting a deleted status. @@ -1222,25 +1224,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "つぶやきの内容を探す" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." @@ -1409,7 +1412,7 @@ msgid "Not a member." msgstr "全てのメンバー" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "フォローを保存できません。" @@ -1514,9 +1517,11 @@ msgstr "自分のアバターをアップロードできます。最大サイズ #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "合っているプロフィールのないユーザ" @@ -1575,9 +1580,10 @@ msgstr "切り取り" msgid "No file uploaded." msgstr "プロファイル記述がありません。" -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "あなたのアバターとなるイメージを正方形で指定" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1637,7 +1643,7 @@ msgstr "バックグラウンド" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1679,7 +1685,8 @@ msgstr "ノート" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "このユーザをアンブロックする" #. TRANS: Button label on the user block form. @@ -1696,9 +1703,9 @@ msgid "Yes" msgstr "はい" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "このユーザをブロックする" #. TRANS: Server error displayed when blocking a user fails. @@ -1863,7 +1870,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "パスワード確認" @@ -1893,13 +1900,13 @@ msgstr "アプリケーションが見つかりません。" #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "このアプリケーションのオーナーではありません。" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "あなたのセッショントークンに関する問題がありました。" @@ -1923,12 +1930,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "このアプリケーションを削除しないでください" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "このアプリケーションを削除" #. TRANS: Client error when trying to delete group while not logged in. @@ -1987,13 +1996,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 #, fuzzy -msgid "Do not delete this group" +msgid "Do not delete this group." msgstr "このつぶやきを削除できません。" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 #, fuzzy -msgid "Delete this group" +msgid "Delete this group." msgstr "このユーザを削除" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2036,12 +2045,14 @@ msgstr "本当にこのつぶやきを削除しますか?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "このつぶやきを削除できません。" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "このつぶやきを削除" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2078,13 +2089,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "このつぶやきを削除できません。" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "このユーザを削除" #. TRANS: Message used as title for design settings for the site. @@ -2253,21 +2264,21 @@ msgid "Use defaults" msgstr "デフォルトを使用" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "デフォルトデザインに戻す。" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "デフォルトへリセットする" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "デザインの保存" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2299,7 +2310,7 @@ msgid "You must be logged in to edit an application." msgstr "アプリケーションを編集するにはログインしていなければなりません。" #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "そのようなアプリケーションはありません。" @@ -2586,7 +2597,7 @@ msgid "Cannot normalize that email address." msgstr "そのメールアドレスを正規化できません" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "有効なメールアドレスではありません。" @@ -2664,19 +2675,22 @@ msgstr "入ってくるメールアドレスではありません。" #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "ユーザレコードを更新できません。" #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "入ってくるメールアドレスは削除されました。" #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "新しい入ってくるメールアドレスが追加されました。" @@ -2687,7 +2701,8 @@ msgstr "このつぶやきはすでにお気に入りです!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "お気に入りをやめる" #. TRANS: Page title for first page of favorited notices. @@ -2932,12 +2947,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "このグループからこのユーザをブロックしない" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "このグループからこのユーザをブロック" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3267,7 +3284,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "私のJabber/GTalkアドレスのためにMicroIDを発行してください。" #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "設定が保存されました。" @@ -3682,39 +3700,39 @@ msgstr "保存" msgid "Save license settings" msgstr "" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "既にログインしています。" -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "ユーザ名またはパスワードが間違っています。" -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "ユーザ設定エラー。 あなたはたぶん承認されていません。" -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "ログイン" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "サイトへログイン" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "ログイン状態を保持" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "以降は自動的にログインする。共用コンピューターでは避けましょう!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "パスワードを紛失、忘れた?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3722,12 +3740,12 @@ msgstr "" "セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力し" "て下さい。" -#: actions/login.php:292 +#: actions/login.php:281 #, fuzzy msgid "Login with your username and password." msgstr "ユーザ名とパスワードでログイン" -#: actions/login.php:295 +#: actions/login.php:284 #, fuzzy, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3939,30 +3957,30 @@ msgid "You have not registered any applications yet." msgstr "あなたはまだなんのアプリケーションも登録していません。" #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "接続されたアプリケーション" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "あなたはそのアプリケーションのユーザではありません。" #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "アプリケーションのための取消しアクセスができません: " #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3970,7 +3988,7 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "" "あなたは、どんなアプリケーションもあなたのアカウントを使用するのを認可してい" @@ -3979,13 +3997,23 @@ msgstr "" #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "API メソッドが見つかりません。" + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "API メソッドが見つかりません。" + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "ユーザはプロフィールをもっていません。" @@ -3995,6 +4023,16 @@ msgstr "ユーザはプロフィールをもっていません。" msgid "%1$s's status on %2$s" msgstr "%2$s における %1$s のステータス" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "受け取り手のユーザが見つかりません。" + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, fuzzy, php-format @@ -4085,17 +4123,21 @@ msgstr "不正なログイントークンが指定されています。" msgid "Login token expired." msgstr "ログイントークンが期限切れです・" -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "%1$s の送信箱 - ページ %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "%s の送信箱" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "これはあなたの送信箱です、あなたが送ったプライベート・メッセージをリストしま" @@ -4123,40 +4165,45 @@ msgstr "古いパスワード" msgid "New password" msgstr "新しいパスワード" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6文字以上" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "上と同じパスワード" #: actions/passwordsettings.php:117 msgid "Change" msgstr "変更" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "パスワードは6文字以上にする必要があります。" -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "パスワードが一致しません。" -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "古いパスワードが間違っています。" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "ユーザ保存エラー; 不正なユーザ" -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "新しいパスワードを保存できません。" -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "パスワードが保存されました。" @@ -4500,7 +4547,7 @@ msgid "Profile information" msgstr "プロファイル情報" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く" @@ -4508,7 +4555,7 @@ msgstr "1-64文字の、小文字アルファベットか数字で、スペー #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4516,13 +4563,13 @@ msgstr "フルネーム" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "ホームページ" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "ホームページ、ブログ、プロファイル、その他サイトの URL" @@ -4530,35 +4577,36 @@ msgstr "ホームページ、ブログ、プロファイル、その他サイト #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" msgstr[0] "%d字以内で自分自身と自分の興味について書いてください" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "自分自身と自分の興味について書いてください" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "自己紹介" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "場所" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "自分のいる場所。例:「都市, 都道府県 (または地域), 国」" @@ -4577,8 +4625,10 @@ msgstr "タグ" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "自分自身についてのタグ (アルファベット、数字、-、.、_)、カンマまたは空白区切" "りで" @@ -4590,7 +4640,8 @@ msgstr "言語" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "ご希望の言語" #. TRANS: Dropdownlist label in form for profile settings. @@ -4605,14 +4656,15 @@ msgstr "普段のタイムゾーンはどれですか?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "自分をフォローしている者を自動的にフォローする (BOTに最適)" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4631,9 +4683,9 @@ msgstr "言語が長すぎます。(最大50字)" #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "不正なタグ: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4879,6 +4931,12 @@ msgstr "パスワードを回復" msgid "Password recovery requested" msgstr "パスワード回復がリクエストされました" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "パスワードが保存されました。" + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4890,12 +4948,6 @@ msgstr "不明なアクション" msgid "6 or more characters, and do not forget it!" msgstr "6文字以上。忘れないでください!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "上と同じパスワード" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4947,14 +4999,8 @@ msgstr "パスワードは6字以上でなければいけません。" msgid "Password and confirmation do not match." msgstr "パスワードと確認が一致しません。" -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "新しいパスワードを保存できません。" - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "ユーザ設定エラー" @@ -4963,100 +5009,99 @@ msgstr "ユーザ設定エラー" msgid "New password successfully saved. You are now logged in." msgstr "新しいパスワードの保存に成功しました。ログインしています。" -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "すみません、招待された人々だけが登録できます。" -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "すみません、不正な招待コード。" -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "登録成功" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "登録" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "登録は許可されていません。" -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "ライセンスに同意頂けない場合は登録できません。" -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "メールアドレスが既に存在します。" -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "不正なユーザ名またはパスワード。" -#: actions/register.php:351 +#: actions/register.php:340 #, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "このフォームで新しいアカウントを作成できます。 次につぶやきを投稿して、友人や" "同僚にリンクできます。 " -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6文字以上" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "メール" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "更新、アナウンス、パスワードリカバリーでのみ使用されます。" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "長い名前" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "ホームページ、ブログ、プロファイル、その他サイトの URL" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "自分のいる場所。例:「都市, 都道府県 (または地域), 国」" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, fuzzy, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "個人情報を除く: パスワード、メールアドレス、IMアドレス、電話番号" -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5089,7 +5134,7 @@ msgstr "" "参加してくださってありがとうございます。私たちはあなたがこのサービスを楽しん" "で使ってくれることを願っています。" -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5122,7 +5167,8 @@ msgid "User nickname" msgstr "ユーザのニックネーム" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "フォローしたいユーザのニックネーム" #: actions/remotesubscribe.php:132 @@ -5130,7 +5176,8 @@ msgid "Profile URL" msgstr "プロファイルURL" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "プロファイルサービスまたはマイクロブロギングサービスのURL" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5140,7 +5187,8 @@ msgid "Subscribe" msgstr "フォロー" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "不正なプロファイルURL。(形式不備)" #: actions/remotesubscribe.php:167 @@ -5345,7 +5393,7 @@ msgstr "あなたはこのサイトでユーザを黙らせることができま msgid "User doesn't have this role." msgstr "合っているプロフィールのないユーザ" -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5387,87 +5435,87 @@ msgstr "セッションのためのデバッグ出力をオン。" msgid "Save site settings" msgstr "サイト設定の保存" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "!!アプリケーションを見るためにはログインしていなければなりません。" -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "アプリケーションプロファイル" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "アイコン" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "名前" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "組織" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "概要" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "統計データ" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "アプリケーションアクション" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "key と secret のリセット" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "削除" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "アプリケーション情報" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "リクエストトークンURL" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "アクセストークンURL" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "承認URL" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5475,7 +5523,7 @@ msgstr "" "注意: 私たちはHMAC-SHA1署名をサポートします。 私たちは平文署名メソッドをサ" "ポートしません。" -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 #, fuzzy msgid "Are you sure you want to reset your consumer key and secret?" msgstr "本当にこのつぶやきを削除しますか?" @@ -5568,16 +5616,18 @@ msgid "Group profile" msgstr "グループプロファイル" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "ノート" @@ -5724,7 +5774,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s、ページ %2$d" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5981,7 +6031,7 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 #, fuzzy -msgid "Save site notice" +msgid "Save site notice." msgstr "サイトつぶやき" #. TRANS: Title for SMS settings. @@ -6042,7 +6092,8 @@ msgstr "SMS 電話番号" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "電話番号、句読点またはスペースがない、市街番号付き" #. TRANS: Form legend for SMS preferences form. @@ -6384,8 +6435,9 @@ msgstr "タグ %s" msgid "User profile" msgstr "ユーザプロファイル" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "写真" @@ -6401,6 +6453,11 @@ msgid "" msgstr "" "このユーザのタグ (アルファベット、数字、-、.、_)、カンマかスペース区切り" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "不正なタグ: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6436,7 +6493,7 @@ msgstr "ログイントークンが要求されていません。" msgid "Unsubscribed" msgstr "フォロー解除済み" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6471,7 +6528,7 @@ msgstr "不正なウェルカムテキスト。最大長は255字です。" #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, fuzzy, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "不正なデフォルトフォローです: '%1$s' はユーザではありません。" #. TRANS: Link description in user account settings menu. @@ -6532,54 +6589,70 @@ msgstr "ユーザが新しいユーザを招待するのを許容するかどう #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" -msgstr "" +#, fuzzy +msgid "Save user settings." +msgstr "サイト設定の保存" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "フォローを承認" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "ユーザのつぶやきをフォローするには詳細を確認して下さい。だれかのつぶやきを" "フォローするために尋ねない場合は、\"Reject\" をクリックして下さい。" +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "ライセンス" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "承認" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "このユーザーをフォロー" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "拒否" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "このフォローを拒否" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "認証のリクエストがありません。" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "フォローが承認されました" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6589,11 +6662,12 @@ msgstr "" "フォローを承認するかに関する詳細のためのサイトの指示をチェックしてください。" "あなたのフォロートークンは:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "フォローが拒否" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6603,39 +6677,64 @@ msgstr "" "フォローを完全に拒絶するかに関する詳細のためのサイトの指示をチェックしてくだ" "さい。" -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "リスナー URI ‘%s’ はここでは見つかりません。" -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "リスニー URI ‘%s’ が長すぎます。" -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "リスニー URI ‘%s’ はローカルユーザーではありません。" -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "プロファイル URL ‘%s’ はローカルユーザーではありません。" -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"リスニーストリームライセンス ‘%1$s’ は、サイトライセンス ‘%2$s’ と互換性があ" +"りません。" + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "アバター URL ‘%s’ が正しくありません。" -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "アバターURL を読み取れません '%s'" -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "アバター URL '%s' は不正な画像形式。" #. TRANS: Page title for profile design page. @@ -7850,6 +7949,11 @@ msgstr "パスワード変更は許可されていません" msgid "Block" msgstr "ブロック" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "このユーザをブロックする" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8268,6 +8372,11 @@ msgstr "承認された接続アプリケーション" msgid "Database error" msgstr "データベースエラー" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "このユーザを削除" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8306,6 +8415,21 @@ msgstr "色の変更" msgid "Use defaults" msgstr "デフォルトを使用" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "デフォルトデザインに戻す。" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "デフォルトへリセットする" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "デザインの保存" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8413,7 +8537,6 @@ msgid "Grant this user the \"%s\" role" msgstr "" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く" @@ -9160,6 +9283,10 @@ msgstr "このつぶやきへ返信" msgid "Reply" msgstr "返信" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "このつぶやきを削除" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "つぶやきを繰り返しました" @@ -9441,6 +9568,10 @@ msgstr "招待" msgid "Invite friends and colleagues to join you on %s" msgstr "友人や同僚が %s で加わるよう誘ってください。" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "このユーザーをフォロー" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9709,3 +9840,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6文字以上" + +#~ msgid "Same as password above" +#~ msgstr "上と同じパスワード" + +#~ msgid "Can't save new password." +#~ msgstr "新しいパスワードを保存できません。" + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "ホームページ、ブログ、プロファイル、その他サイトの URL" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index b567fda9dd..89634276b9 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:11+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:27+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -151,7 +151,7 @@ msgstr "ასეთი გვერდი არ არსებობს." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -509,7 +509,8 @@ msgstr "მიმღები მომხმარებელი ვერ მ #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "ვერ გაუგზავნი პირდაპირ შეტყობინებას იმას, ვისთანაც არ მეგობრობ." #. TRANS: Client error displayed trying to direct message self (403). @@ -594,7 +595,7 @@ msgstr "სასურველი მომხმარებელი ვე #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "მეტსახელი უკვე გამოყენებულია. სცადე სხვა." @@ -604,7 +605,7 @@ msgstr "მეტსახელი უკვე გამოყენებუ #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "მეტსახელი არასწორია." @@ -617,7 +618,7 @@ msgstr "მეტსახელი არასწორია." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "სასტარტო გვერდი არასწორი URL-ია." @@ -627,7 +628,7 @@ msgstr "სასტარტო გვერდი არასწორი URL #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "სრული სახელი ძალიან გრძელია (არაუმეტეს 255 სიმბოლო)." @@ -655,7 +656,7 @@ msgstr[0] "აღწერა ძალიან გრძელია (არ #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "ადგილმდებარეობა ძალიან გრძელია (არაუმეტეს 255 სიმბოლო)." @@ -812,15 +813,15 @@ msgstr "თქვენ არ ხართ ავტორიზირებუ #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -852,7 +853,7 @@ msgstr "ბაზამ დაუშვა შეცდომა OAuth აპლ #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "" @@ -898,19 +899,20 @@ msgstr "ანგარიში" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "მეტსახელი" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "პაროლი" @@ -1034,7 +1036,7 @@ msgstr "API მეთოდი ვერ მოიძებნა." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "ფორმატი არ არის მხარდაჭერილი." #. TRANS: Client error displayed requesting a deleted status. @@ -1210,25 +1212,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "მოძებნე შეტყობინებებში" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." @@ -1395,7 +1398,7 @@ msgid "Not a member." msgstr "ტელეფონის ნომერი არ არის." #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "საკუთარი გამოწერის წაშლა ვერ ხერხდება." @@ -1501,9 +1504,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "მომხმარებელი შესაბამისი პროფილის გარეშე." @@ -1561,9 +1566,10 @@ msgstr "მოჭრა" msgid "No file uploaded." msgstr "არცერთი ფაილი არ ატვირთულა" -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "აირჩიეთ სურათის კვადრატული მონაკვეთი თქვენი ავატარისთვის" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1623,7 +1629,7 @@ msgstr "ფონი" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1661,7 +1667,8 @@ msgstr "არა" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "არ დაბლოკო ეს მომხმარებელი" #. TRANS: Button label on the user block form. @@ -1678,9 +1685,9 @@ msgid "Yes" msgstr "დიახ" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "დაბლოკე ეს მომხმარებელი" #. TRANS: Server error displayed when blocking a user fails. @@ -1845,7 +1852,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "ვადასტურებ" @@ -1875,13 +1882,13 @@ msgstr "აპლიკაცია ვერ მოიძებნა." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "თქვენ არ ხართ ამ აპლიკაციის მფლობელი." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "" @@ -1904,12 +1911,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "არ წაშალო ეს აპლიკაცია" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "აპლიკაციის წაშლა" #. TRANS: Client error when trying to delete group while not logged in. @@ -1967,13 +1976,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 #, fuzzy -msgid "Do not delete this group" +msgid "Do not delete this group." msgstr "არ წაშალო ეს შეტყობინება" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 #, fuzzy -msgid "Delete this group" +msgid "Delete this group." msgstr "ამ მომხმარებლის წაშლა" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2014,12 +2023,14 @@ msgstr "ნამდვილად გსურთ ამ შეტყობი #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "არ წაშალო ეს შეტყობინება" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "შეტყობინების წაშლა" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2056,13 +2067,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "არ წაშალო ეს შეტყობინება" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "ამ მომხმარებლის წაშლა" #. TRANS: Message used as title for design settings for the site. @@ -2231,21 +2242,21 @@ msgid "Use defaults" msgstr "გამოიყენე პირვანდელი მდგომარეობა" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "დააბრუნე პირვანდელი დიზაინი" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "პირვანდელის პარამეტრების დაბრუნება" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "შეინახე დიზაინი" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2277,7 +2288,7 @@ msgid "You must be logged in to edit an application." msgstr "აპლიკაციის ჩასასწორებლად საჭიროა ავროტიზაცია." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "ასეთი აპლიკაცია არ არის." @@ -2560,7 +2571,7 @@ msgid "Cannot normalize that email address." msgstr "Jabber ID-ს ნორმალიზაცია ვერ ხერხდება" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "არასწორი ელ. ფოსტის მისამართი." @@ -2637,19 +2648,22 @@ msgstr "შემომავალი ელ. ფოსტის მისა #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "მომხმარებლის ჩანაწერის განახლება ვერ მოხერხდა." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "შემომავალი ელ. ფოსტის მისამართი მოშორებულია." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "დამატებულია ახალი შემომავალი ელ. ფოსტა." @@ -2660,7 +2674,8 @@ msgstr "ეს შეტყობინება უკვე რჩეული #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "რჩეულის გაუქმება" #. TRANS: Page title for first page of favorited notices. @@ -2900,12 +2915,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "არ გარიცხო ემ მომხმარებელი ამ ჯგუფიდან" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "გარიცხე ეს მომხმარებელი ამ ჯგუფიდან" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3234,7 +3251,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "გამოაქვეყნე MicroID ჩემი Jabber/GTalk მისამართისთვის." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "პარამეტრები შენახულია." @@ -3650,39 +3668,39 @@ msgstr "შენახვა" msgid "Save license settings" msgstr "" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "უკვე ავტორიზირებული ხართ." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "არასწორი მომხმარებლის სახელი ან პაროლი." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "" -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "შესვლა" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "საიტზე შესვლა" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "დამიმახსოვრე" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "მომავალში ავტომატურად შემიყვანე; არა საზიარო კომპიუტერებისათვის!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "დაკარგეთ ან დაგავიწყდათ პაროლი?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3690,11 +3708,11 @@ msgstr "" "უსაფრთხოების მიზნებისათვის, გთხოვთ შეიყვანოთ თქვენი მომხ. სახელი და პაროლი " "პარამეტრების შეცვლამდე." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "შედი საკუთარი მომხ. სახელით და პაროლით." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3902,30 +3920,30 @@ msgid "You have not registered any applications yet." msgstr "თქვენ ჯერჯერობით არცერთი აპლიკაცია არ დაგირეგისტრირებიათ." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "მიერთებული აპლიკაციები" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "თქვენ არ ხართ ამ აპლიკაციის მომხმარებელი." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "%s აპლიკაციის მიერ ზვდომის გაუქმება ვერ ხერხდება." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3933,7 +3951,7 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "" "თქვენ არცერთი აპლიკაციისთვის არ მიგიციათ თქვენი ანგარიშის გამოყენების უფლება." @@ -3941,13 +3959,23 @@ msgstr "" #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "API მეთოდი ვერ მოიძებნა." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "API მეთოდი ვერ მოიძებნა." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "შეტყობინებას პრფილი არ გააჩნია." @@ -3957,6 +3985,16 @@ msgstr "შეტყობინებას პრფილი არ გაა msgid "%1$s's status on %2$s" msgstr "%1$s–ის სტატუსი %2$s–ზე" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "მიმღები მომხმარებელი ვერ მოიძებნა." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4047,17 +4085,21 @@ msgstr "" msgid "Login token expired." msgstr "" -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "%1$s-ის გამავალი ფოსტა - გვერდი %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "%s-ის გამავალი ფოსტა" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "ეს არის თქვენი გამავალი ფოსტა, რომელშიც ჩამოთვლილია პირადი შეტყობინებები " @@ -4085,40 +4127,45 @@ msgstr "ძველი პაროლი" msgid "New password" msgstr "ახალი პაროლი" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 ან მეტი სიმბოლო" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "იგივე რაც ზედა პაროლი" #: actions/passwordsettings.php:117 msgid "Change" msgstr "შეცვლა" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "პაროლი უნდა შედგებოდეს 6 ან მეტი სიმბოლოსგან." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "პაროლები არ ემთხვევა." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "არასწორი ძველი პაროლი" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "შეცდომა მომხმარებლის შენახვისას; არასწორი." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "ვერ ვინახავ ახალ პაროლს." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "პაროლი შენახულია." @@ -4458,7 +4505,7 @@ msgid "Profile information" msgstr "ინფორმაცია პროფილზე" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1–64 პატარა ასოები ან ციფრები. პუნქტუაციები ან სივრცეები დაუშვებელია" @@ -4466,7 +4513,7 @@ msgstr "1–64 პატარა ასოები ან ციფრებ #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4474,13 +4521,13 @@ msgstr "სრული სახელი" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "ვებ. გვერსი" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "თქვენი ვებ. გვერდის URL, ბლოგი, ან პროფილი სხვა საიტზე" @@ -4488,35 +4535,36 @@ msgstr "თქვენი ვებ. გვერდის URL, ბლოგი #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" msgstr[0] "აღწერეთ საკუთარი თავი და თქვენი ინტერესები %d სიმბოლოთი" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "აღწერეთ საკუთარი თავი და თქვენი ინტერესები" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "ბიოგრაფია" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "მდებარეობა" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "რომელ ქალაქში, რეგიონში, ქვეყანაში ხართ?" @@ -4535,8 +4583,10 @@ msgstr "სანიშნეები" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "საკუთარი სანიშნეები (ასოები, ციფრები, -, ., და _). გამოყავით მძიმით ან " "სივრცით" @@ -4548,7 +4598,8 @@ msgstr "ენა" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "სასურველი ენა" #. TRANS: Dropdownlist label in form for profile settings. @@ -4563,15 +4614,16 @@ msgstr "რომელ დროის სარტყელში ხართ #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "ავტომატურად გამოიწერე ის ვინც მე გამომიწერს (საუკეთესოა არა ადამიანებისთვის)" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4590,9 +4642,9 @@ msgstr "ენა ძალიან გრძელია (არაუმე #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "არასწორი სანიშნე: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4831,6 +4883,12 @@ msgstr "პაროლის აღდგენა" msgid "Password recovery requested" msgstr "პაროლის აღდგენა მოთხოვნილია" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "პაროლი შენახულია." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4842,12 +4900,6 @@ msgstr "უცნობი მოქმედება" msgid "6 or more characters, and do not forget it!" msgstr "6 ან მეტი სიმბოლო, და არ დაგავიწყდეთ!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "იგივე რაც ზედა პაროლი" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4901,14 +4953,8 @@ msgstr "პაროლი უნდა შედგებოდეს 6 ან msgid "Password and confirmation do not match." msgstr "პაროლი და დასტური არ ემთხვევა." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "ვერ ვინახავ ახალ პაროლს." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "მომხმარებელის დაყენებისას მოხდა შეცდომა." @@ -4917,71 +4963,71 @@ msgstr "მომხმარებელის დაყენებისა msgid "New password successfully saved. You are now logged in." msgstr "ახალი პაროლი წარმატებით იქნა შენახული. თქვენ ახლა ავტორიზირებული ხართ." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "ბოდიშს გიხდით, დარეგისტრირება მხოლოდ მოწვევითაა შესაძლებელი." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "ბოდიშს გიხდით, მოსაწვევი კოდი არასწორია." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "რეგისტრაცია წარმატებით დასრულდა" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "რეგისტრაცია" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "რეგისტრაცია არ არის დაშვებული." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "ვერ დარეგისტრირდებით თუ არ დაეთანხმებით ლიცენზიის პირობებს." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "ელ. ფოსტის მისამართი უკვე არსებობს." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "არასწორი მომხმარებლის სახელი ან პაროლი." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "ამ ფორმით შეგიძლიათ შექმნათ ახალი ანგარიში. შემდგომ შეძლებთ შეტყობინებების " "დაპოსტვას და მეგობრებთან და კოლეგებთან ურთიერთობას. " -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 ან მეტი სიმბოლო" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "ელ. ფოსტა" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "" "გამოიყენება მხოლოდ განახლებებისთვის, განცხადებებისთვის და პაროლის აღსადგენად" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "გრძელი სახელი, სასურველია თქვენი ნამდვილი სახელი" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "თქვენი ვებ. გვერდის URL, ბლოგი, ან პროფილი სხვა საიტზე" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "რომელ ქალაქში, რეგიონში, ქვეყანაში ხართ?" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." @@ -4989,23 +5035,23 @@ msgstr "" "მე ვაცნობიერებ, რომ %1$s–ის შიგთავსი და მონაცემები არის პირადული და " "კონციდენციალური." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "ჩემი ტექსტის და ფაილების საავტორო უფლება ეკუტვნის %1$s–ს." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "ჩემი ტექსტი და ფაილები ჩემივე საკუთრებაა." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "ყველა უფლება დაცულია." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5014,7 +5060,7 @@ msgstr "" "ჩემი ტექსტი და ფაილები ხელმისაწვდომია %s–ით, გარდა ამ პირადი ინფორმაციისა: " "პაროლი, ელ. ფოსტის მისამართი, IM მისამართი და ტელეფონის ნომერი." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5047,7 +5093,7 @@ msgstr "" "\n" "გმადლობთ რომ დარეგისტრირდით. იმედი გვაქვს ისიამოვნებთ ამ სერვისით." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5080,7 +5126,8 @@ msgid "User nickname" msgstr "მომხმარებლის მეტსახელი" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "მომხმარებლის მეტსახელი რომელსაც გინდათ რომ მიჰყვეთ" #: actions/remotesubscribe.php:132 @@ -5088,7 +5135,8 @@ msgid "Profile URL" msgstr "პროფილის URL" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "თქვენი პროფილის URL სხვა თავსებად მიკრობლოგინგის სერვისზე" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5098,7 +5146,8 @@ msgid "Subscribe" msgstr "გამოწერა" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "პროფილის არასწორი URL (ცუდი ფორმატი)" #: actions/remotesubscribe.php:167 @@ -5299,7 +5348,7 @@ msgstr "თქვენ არ შეგიძლიათ მომხმარ msgid "User doesn't have this role." msgstr "მომხმარებელს არ გააჩნია ეს როლი." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5341,87 +5390,87 @@ msgstr "" msgid "Save site settings" msgstr "საიტის პარამეტრების შენახვა" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "აპლიკაციის სანახავად საჭიროა ავროტიზაცია." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "აპლიკაციის პროფილი" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "დასახელება" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "ორგანიზაცია" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "აღწერა" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "სტატისტიკა" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "აპლიკაციის მოქმედებები" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "გასაღების და საიდუმლოს გადაყენება" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "წაშლა" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "ინფო აპლიკაციაზე" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "მომხმარებლის გასაღები" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "მომხმარებლის საიდუმლო" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "URL-ის ავტორიზაცია" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5429,7 +5478,7 @@ msgstr "" "შენიშვნა: ჩვენ მხარს ვუჭერთ HMAC-SHA1 ხელმოწერებს. ჩვენ არ ვუჭერთ მხარს " "მხოლოდ ტექსტური ხელმოწერის მეთოდს." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" "დარწმუნებული ხართ რომ გნებავთ თქვენი მომხმარებლის გასაღების და საიდუმლოს " @@ -5518,16 +5567,18 @@ msgid "Group profile" msgstr "" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "შენიშვნა" @@ -5665,7 +5716,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s - %2$s" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5902,7 +5953,8 @@ msgstr "საერთო სასაიტო შეტყობინებ #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "შეინახე საერთოსასაიტო შეტყობინება" #. TRANS: Title for SMS settings. @@ -5962,7 +6014,8 @@ msgstr "SMS ტელეფონის ნომერი" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "ტელ. ნომერი, პუნქტუაციის ან სივრცეების გარეშე, ქვეყნის კოდით." #. TRANS: Form legend for SMS preferences form. @@ -6302,8 +6355,9 @@ msgstr "სანიშნე %s" msgid "User profile" msgstr "მომხმარებლის პროფილი" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "ფოტო" @@ -6320,6 +6374,11 @@ msgstr "" "სანიშნეები ამ მომხმარებლისთვის (ასოები, ციფრები, -, ., და _). გამოყავით " "მძიმით ან სივრცით" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "არასწორი სანიშნე: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6357,7 +6416,7 @@ msgstr "არცერთი პროფილის ID არ არის msgid "Unsubscribed" msgstr "გამოწერა გაუქმებულია" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6391,7 +6450,7 @@ msgstr "არასწორი მისასალმებელი ტე #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" #. TRANS: Link description in user account settings menu. @@ -6452,55 +6511,71 @@ msgstr "მიეცეთ თუ არა მომხმარებლებ #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" -msgstr "" +#, fuzzy +msgid "Save user settings." +msgstr "საიტის პარამეტრების შენახვა" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "გამოწერის ავტორიზაცია" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "გთხოვთ გადახედოთ ამ დეტალებს, რომ დარწმუნდეთ რომ გინდათ ამ მომხმარებლის " "განახლებების გამოწერა. თუ თქვენ არ გინდოდათ გამოწერა, მაშინ გააჭირეთ ღილაკს " "\"უარყოფა\"." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "ლიცენზია" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "მიღება" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "გამოიწერე ეს მომხმარებელი" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "უარყოფა" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "ამ გამოწერის უარყოფა" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "ავტორიზაციის მოთხოვნა არ არის!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "გამოწერა ავტორიზირებულია" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6510,11 +6585,12 @@ msgstr "" "გადაამოწმეთ საიტის ინსტრუქციებში გამოწერის ავტორიზირების დეტალები. თქვენი " "გამოწერის ტოკენია:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "გამოწერა უარყოფილია" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6524,39 +6600,64 @@ msgstr "" "გადაამოწმეთ საიტის ინსტრუქციებში გამოწერის მთლიანად უარყოფის შესახებ " "დეტალები." -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "მსმენელის URI ‘%s’ აქ ვერ მოიძებნა." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." +msgstr "წყაროს URL ძალიან გრძელია." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." +msgstr "პროფილის URL ‘%s’ ლოკალური მომხმარებლისთვისაა განკუთვნილი." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "პროფილის URL ‘%s’ ლოკალური მომხმარებლისთვისაა განკუთვნილი." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"გამოსაწერი მომხმარებლის ნაკადის ლიცენზია ‘%1$s’ შეუთავსებელია საიტის " +"ლიცენზიასთან ‘%2$s’." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "ავატარის URL ‘%s’ არ არის სწორი." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "ვერ ვკითხულობ ავატარის URL ‘%s’." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "ავატარის სურათის ფორმატი არასწორია URL ‘%s’." #. TRANS: Page title for profile design page. @@ -7767,6 +7868,11 @@ msgstr "პაროლის ცვლილება არ არის ნ msgid "Block" msgstr "ბლოკირება" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "დაბლოკე ეს მომხმარებელი" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8183,6 +8289,11 @@ msgstr "ავტორიზირებული შეერთებულ msgid "Database error" msgstr "მონაცემთა ბაზის შეცდომა" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "ამ მომხმარებლის წაშლა" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8221,6 +8332,21 @@ msgstr "შეცვალე ფერები" msgid "Use defaults" msgstr "გამოიყენე პირვანდელი მდგომარეობა" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "დააბრუნე პირვანდელი დიზაინი" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "პირვანდელის პარამეტრების დაბრუნება" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "შეინახე დიზაინი" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8327,7 +8453,6 @@ msgid "Grant this user the \"%s\" role" msgstr "მიანიჭე ამ მომხმარებელს \"%s\" როლი" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1–64 პატარა ასოები ან ციფრები. პუნქტუაციები ან სივრცეები დაუშვებელია" @@ -9077,6 +9202,10 @@ msgstr "უპასუხე ამ შეტყობინებას" msgid "Reply" msgstr "პასუხი" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "შეტყობინების წაშლა" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "შეტყობინება გამეორებულია" @@ -9358,6 +9487,10 @@ msgstr "მოწვევა" msgid "Invite friends and colleagues to join you on %s" msgstr "მოიწვიე მეგობრები და კოლეგები %s-ზე" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "გამოიწერე ეს მომხმარებელი" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9628,3 +9761,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6 ან მეტი სიმბოლო" + +#~ msgid "Same as password above" +#~ msgstr "იგივე რაც ზედა პაროლი" + +#~ msgid "Can't save new password." +#~ msgstr "ვერ ვინახავ ახალ პაროლს." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "თქვენი ვებ. გვერდის URL, ბლოგი, ან პროფილი სხვა საიტზე" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 9c65877cfc..bc7acc4d39 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:13+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:29+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -153,7 +153,7 @@ msgstr "해당하는 페이지 없음" #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -505,7 +505,8 @@ msgstr "받는 사용자가 없습니다." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "당신의 친구가 아닌 사용자에게 직접 메시지를 보낼 수 없습니다." #. TRANS: Client error displayed trying to direct message self (403). @@ -591,7 +592,7 @@ msgstr "타겟 이용자를 찾을 수 없습니다." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." @@ -601,7 +602,7 @@ msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십 #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "유효한 별명이 아닙니다" @@ -614,7 +615,7 @@ msgstr "유효한 별명이 아닙니다" #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "홈페이지 주소형식이 올바르지 않습니다." @@ -624,7 +625,7 @@ msgstr "홈페이지 주소형식이 올바르지 않습니다." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "실명이 너무 깁니다. (최대 255글자)" @@ -652,7 +653,7 @@ msgstr[0] "설명이 너무 깁니다. (최대 %d 글자)" #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "위치가 너무 깁니다. (최대 255글자)" @@ -810,15 +811,15 @@ msgstr "당신은 이 프로필에 구독되지 않고있습니다." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "세션토큰에 문제가 있습니다. 다시 시도해주십시오." @@ -850,7 +851,7 @@ msgstr "OAuth 응용 프로그램 사용자 추가 중 데이터베이스 오류 #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "잘못된 폼 제출" @@ -902,19 +903,20 @@ msgstr "계정" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "별명" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "비밀 번호" @@ -1038,7 +1040,7 @@ msgstr "API 메서드 발견 안 됨." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "지원하지 않는 형식입니다." #. TRANS: Client error displayed requesting a deleted status. @@ -1214,25 +1216,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "통지들의 내용 찾기" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." @@ -1399,7 +1402,7 @@ msgid "Not a member." msgstr "모든 회원" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "구독을 저장할 수 없습니다." @@ -1504,9 +1507,11 @@ msgstr "당신의 개인 아바타를 업로드할 수 있습니다. 최대 파 #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "이용자가 프로필을 가지고 있지 않습니다." @@ -1564,9 +1569,10 @@ msgstr "자르기" msgid "No file uploaded." msgstr "파일을 업로드하지 않았습니다." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "그림에서 당신의 아바타로 사용할 영역을 지정하십시오." #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1626,7 +1632,7 @@ msgstr "배경" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1666,7 +1672,8 @@ msgstr "아니오" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "이용자를 차단하지 않는다." #. TRANS: Button label on the user block form. @@ -1683,9 +1690,9 @@ msgid "Yes" msgstr "예" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "이 사용자 차단하기" #. TRANS: Server error displayed when blocking a user fails. @@ -1851,7 +1858,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "인증" @@ -1881,13 +1888,13 @@ msgstr "인증 코드가 없습니다." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "이 응용프로그램 삭제 않기" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "당신의 세션토큰관련 문제가 있습니다." @@ -1908,12 +1915,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "이 응용프로그램 삭제 않기" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "이 응용프로그램 삭제" #. TRANS: Client error when trying to delete group while not logged in. @@ -1969,13 +1978,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 #, fuzzy -msgid "Do not delete this group" +msgid "Do not delete this group." msgstr "이 통지를 지울 수 없습니다." #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 #, fuzzy -msgid "Delete this group" +msgid "Delete this group." msgstr "이 사용자 삭제" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2019,12 +2028,13 @@ msgstr "정말로 통지를 삭제하시겠습니까?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 #, fuzzy -msgid "Do not delete this notice" +msgid "Do not delete this notice." msgstr "이 통지를 지울 수 없습니다." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "이 게시글 삭제하기" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2059,13 +2069,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "이 통지를 지울 수 없습니다." #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "이 사용자 삭제" #. TRANS: Message used as title for design settings for the site. @@ -2232,21 +2242,20 @@ msgid "Use defaults" msgstr "기본값 사용" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" -msgstr "" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." +msgstr "기본값 사용" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +msgid "Reset back to default." msgstr "" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "디자인 저장" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2278,7 +2287,7 @@ msgid "You must be logged in to edit an application." msgstr "응용 프로그램 수정을 위해서는 로그인해야 합니다." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "신규 응용 프로그램" @@ -2561,7 +2570,7 @@ msgid "Cannot normalize that email address." msgstr "메일 주소를 정규화 할 수 없습니다." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "올바른 메일 주소가 아닙니다." @@ -2638,19 +2647,22 @@ msgstr "받는 메일 주소가 없습니다." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "사용자 기록을 업데이트 할 수 없습니다." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "받는 메일 주소를 지웠습니다." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "새로운 받는 메일 주소를 추가했습니다." @@ -2661,7 +2673,8 @@ msgstr "이 게시글은 이미 좋아하는 게시글입니다." #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "좋아하는글 취소" #. TRANS: Page title for first page of favorited notices. @@ -2901,12 +2914,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "이용자를 차단하지 않는다." #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "그룹 이용자는 차단해제" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3225,7 +3240,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Jabber/GTalk 계정을 위한 MicroID의 생성" #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "설정이 저장되었습니다." @@ -3631,51 +3647,51 @@ msgstr "저장" msgid "Save license settings" msgstr "" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "이미 로그인 하셨습니다." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "틀린 계정 또는 비밀 번호" -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "당신은 이 프로필에 구독되지 않고있습니다." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "로그인" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "사이트에 로그인하세요." -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "자동 로그인" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "앞으로는 자동으로 로그인합니다. 공용 컴퓨터에서는 이용하지 마십시오!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "비밀 번호를 잊으셨나요?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." msgstr "" "보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." -#: actions/login.php:292 +#: actions/login.php:281 #, fuzzy msgid "Login with your username and password." msgstr "사용자 이름과 비밀번호로 로그인" -#: actions/login.php:295 +#: actions/login.php:284 #, fuzzy, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3885,31 +3901,31 @@ msgid "You have not registered any applications yet." msgstr "응용 프로그램 수정을 위해서는 로그인해야 합니다." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "연결한 응용프로그램" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 #, fuzzy msgid "You are not a user of that application." msgstr "당신은 해당 그룹의 멤버가 아닙니다." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "다음 양식을 이용해 그룹을 편집하십시오." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3917,20 +3933,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "계정에서 사용하도록 허용한 응용 프로그램이 없습니다." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "API 메서드 발견 안 됨." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "API 메서드 발견 안 됨." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "이용자가 프로필을 가지고 있지 않습니다." @@ -3940,6 +3966,16 @@ msgstr "이용자가 프로필을 가지고 있지 않습니다." msgid "%1$s's status on %2$s" msgstr "%1$s의 상태 (%2$s에서)" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "받는 사용자가 없습니다." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, fuzzy, php-format @@ -4032,17 +4068,21 @@ msgstr "허용되지 않는 요청입니다." msgid "Login token expired." msgstr "사이트에 로그인하세요." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "%s 및 친구들, %d 페이지" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "%s의 보낸쪽지함" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "당신의 보낸 쪽지함입니다. 이곳엔 당신이 보냈던 비밀 쪽지가 있습니다." @@ -4068,40 +4108,45 @@ msgstr "기존 비밀 번호" msgid "New password" msgstr "새로운 비밀 번호" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6글자 이상" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "위와 같은 비밀 번호" #: actions/passwordsettings.php:117 msgid "Change" msgstr "변경" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "비밀번호는 6자리 이상이어야 합니다." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "비밀 번호가 일치하지 않습니다." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "기존 비밀 번호가 틀렸습니다" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "사용자 저장 오류; 무효한 사용자" -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "새 비밀번호를 저장 할 수 없습니다." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "비밀 번호 저장" @@ -4438,7 +4483,7 @@ msgid "Profile information" msgstr "프로필 정보" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다." @@ -4446,7 +4491,7 @@ msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백 #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4454,13 +4499,13 @@ msgstr "실명" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "홈페이지" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "귀하의 홈페이지, 블로그 혹은 다른 사이트의 프로필 페이지 URL" @@ -4468,35 +4513,36 @@ msgstr "귀하의 홈페이지, 블로그 혹은 다른 사이트의 프로필 #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" msgstr[0] "%d자 이내에서 자기 소개 및 자기 관심사" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "자기 소개 및 자기 관심사" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "자기소개" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "위치" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "당신은 어디에 삽니까? \"시, 도 (or 군,구), 나라\"" @@ -4515,8 +4561,10 @@ msgstr "태그" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "당신을 위한 태그, (문자,숫자,-, ., _로 구성) 콤마 혹은 공백으로 구분." #. TRANS: Dropdownlist label in form for profile settings. @@ -4526,7 +4574,8 @@ msgstr "언어" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "언어 설정" #. TRANS: Dropdownlist label in form for profile settings. @@ -4541,14 +4590,15 @@ msgstr "주로 생활하는 곳이 어느 시간대입니까?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "나에게 구독하는 사람에게 자동 구독 신청" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4567,9 +4617,9 @@ msgstr "언어가 너무 깁니다. (최대 50글자)" #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "올바르지 않은 태그: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4805,6 +4855,12 @@ msgstr "비밀 번호 복구" msgid "Password recovery requested" msgstr "비밀 번호 복구가 요청되었습니다." +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "비밀 번호 저장" + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4816,12 +4872,6 @@ msgstr "알려지지 않은 행동" msgid "6 or more characters, and do not forget it!" msgstr "6글자 이상, 잊어 버리지 마십시오!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "위와 같은 비밀 번호" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4873,14 +4923,8 @@ msgstr "비밀 번호는 6자 이상이어야 합니다." msgid "Password and confirmation do not match." msgstr "비밀 번호가 일치하지 않습니다." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "새 비밀번호를 저장 할 수 없습니다." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "사용자 세팅 오류" @@ -4890,98 +4934,97 @@ msgid "New password successfully saved. You are now logged in." msgstr "" "새로운 비밀 번호를 성공적으로 저장했습니다. 귀하는 이제 로그인 되었습니다." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "죄송합니다. 단지 초대된 사람들만 등록할 수 있습니다." -#: actions/register.php:99 +#: actions/register.php:94 #, fuzzy msgid "Sorry, invalid invitation code." msgstr "확인 코드 오류" -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "회원 가입이 성공적입니다." -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "등록" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "가입이 허용되지 않습니다." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "라이선스에 동의하지 않는다면 등록할 수 없습니다." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "이메일 주소가 이미 존재 합니다." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "사용자 이름이나 비밀 번호가 틀렸습니다." -#: actions/register.php:351 +#: actions/register.php:340 msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6글자 이상" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "메일" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "업데이트나 공지, 비밀번호 찾기에 사용하세요." -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "더욱 긴 이름을 요구합니다." -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "귀하의 홈페이지, 블로그 혹은 다른 사이트의 프로필 페이지 URL" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "당신은 어디에 삽니까? \"시, 도 (or 군,구), 나라\"" -#: actions/register.php:523 +#: actions/register.php:510 #, fuzzy, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "%1$s의 컨텐츠와 데이터는 외부 유출을 금지합니다." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "글과 파일의 저작권은 %1$s의 소유입니다" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, fuzzy, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "다음 개인정보 제외: 비밀 번호, 메일 주소, 메신저 주소, 전화 번호" -#: actions/register.php:588 +#: actions/register.php:573 #, fuzzy, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5014,7 +5057,7 @@ msgstr "" "\n" "다시 한번 가입하신 것을 환영하면서 즐거운 서비스가 되셨으면 합니다." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5046,7 +5089,8 @@ msgid "User nickname" msgstr "이용자 닉네임" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "따라가고 싶은 사용자의 별명" #: actions/remotesubscribe.php:132 @@ -5054,7 +5098,8 @@ msgid "Profile URL" msgstr "프로필 URL" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "다른 마이크로블로깅 서비스의 귀하의 프로필 URL" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5064,7 +5109,8 @@ msgid "Subscribe" msgstr "구독" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "옳지 않은 프로필 URL (나쁜 포멧)" #: actions/remotesubscribe.php:167 @@ -5260,7 +5306,7 @@ msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다." msgid "User doesn't have this role." msgstr "이용자가 프로필을 가지고 있지 않습니다." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet %s" @@ -5302,94 +5348,94 @@ msgstr "" msgid "Save site settings" msgstr "접근 설정을 저장" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "응용 프로그램 수정을 위해서는 로그인해야 합니다." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "신규 응용 프로그램" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "아이콘" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "이름" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "기관 이름이 필요합니다." #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "설명" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "통계" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "인증 코드가 없습니다." -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "삭제" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "인증 코드가 없습니다." -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 #, fuzzy msgid "Authorize URL" msgstr "작성자" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 #, fuzzy msgid "Are you sure you want to reset your consumer key and secret?" msgstr "정말로 통지를 삭제하시겠습니까?" @@ -5475,16 +5521,18 @@ msgid "Group profile" msgstr "그룹 프로필" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "설명" @@ -5626,7 +5674,7 @@ msgid "%1$s tagged %2$s" msgstr "%s 및 친구들, %d 페이지" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5868,7 +5916,7 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 #, fuzzy -msgid "Save site notice" +msgid "Save site notice." msgstr "사이트 공지" #. TRANS: Title for SMS settings. @@ -5927,7 +5975,8 @@ msgstr "휴대폰 번호가 없습니다." #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "지역번호와 함께 띄어쓰기 없이 번호를 적어 주세요." #. TRANS: Form legend for SMS preferences form. @@ -6256,8 +6305,9 @@ msgstr "태그 %s" msgid "User profile" msgstr "이용자 프로필" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "사진" @@ -6274,6 +6324,11 @@ msgstr "" "사용자를 위한 태그 (문자,숫자, -, . ,그리고 _), 콤마 혹은 공백으로 분리하세" "요." +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "올바르지 않은 태그: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6308,7 +6363,7 @@ msgstr "해당 ID의 프로필이 없습니다." msgid "Unsubscribed" msgstr "구독취소 되었습니다." -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6339,7 +6394,7 @@ msgstr "" #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" #. TRANS: Link description in user account settings menu. @@ -6404,56 +6459,70 @@ msgstr "" #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" -msgstr "" +#, fuzzy +msgid "Save user settings." +msgstr "접근 설정을 저장" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "구독을 허가" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" "\"를 클릭해 주세요." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "라이센스" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "수락" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "이 회원을 구독합니다." -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "거부" -#: actions/userauthorization.php:220 +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 #, fuzzy -msgid "Reject this subscription" +msgid "Reject this subscription." msgstr "%s 구독" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "허용되지 않는 요청입니다." -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "구독 허가" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -6463,11 +6532,12 @@ msgstr "" "구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" "시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "구독 거부" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -6477,39 +6547,62 @@ msgstr "" "구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" "시를 찾아 구독 해지 방법에 대하여 읽어보십시오." -#: actions/userauthorization.php:303 +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 #, php-format -msgid "Listener URI ‘%s’ not found here." +msgid "Listener URI \"%s\" not found here." msgstr "" -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." +msgstr "소스 URL이 너무 깁니다." -#: actions/userauthorization.php:314 +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 #, php-format -msgid "Listenee URI ‘%s’ is a local user." +msgid "Listenee URI \"%s\" is a local user." msgstr "" -#: actions/userauthorization.php:329 +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 #, php-format -msgid "Profile URL ‘%s’ is for a local user." +msgid "Profile URL \"%s\" is for a local user." msgstr "" -#: actions/userauthorization.php:345 +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 #, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" -#: actions/userauthorization.php:350 +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 #, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." +msgid "Avatar URL \"%s\" is not valid." +msgstr "소스 URL이 올바르지 않습니다." + +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "아바타 URL '%s'을(를) 읽어낼 수 없습니다." -#: actions/userauthorization.php:355 +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 #, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." +msgid "Wrong image type for avatar URL \"%s\"." msgstr "%S 잘못된 그림 파일 타입입니다. " #. TRANS: Page title for profile design page. @@ -7723,6 +7816,11 @@ msgstr "비밀번호 변경" msgid "Block" msgstr "차단하기" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "이 사용자 차단하기" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8138,6 +8236,11 @@ msgstr "응용프로그램 삭제" msgid "Database error" msgstr "데이터베이스 오류" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "이 사용자 삭제" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8174,6 +8277,21 @@ msgstr "색상 변경" msgid "Use defaults" msgstr "기본값 사용" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "디자인 저장" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8283,7 +8401,6 @@ msgid "Grant this user the \"%s\" role" msgstr "" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다." @@ -8951,6 +9068,10 @@ msgstr "이 게시글에 대해 답장하기" msgid "Reply" msgstr "답장하기" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "이 게시글 삭제하기" + #: lib/noticelist.php:691 #, fuzzy msgid "Notice repeated" @@ -9239,6 +9360,10 @@ msgstr "초대" msgid "Invite friends and colleagues to join you on %s" msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다." +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "이 회원을 구독합니다." + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9505,3 +9630,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6글자 이상" + +#~ msgid "Same as password above" +#~ msgstr "위와 같은 비밀 번호" + +#~ msgid "Can't save new password." +#~ msgstr "새 비밀번호를 저장 할 수 없습니다." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "귀하의 홈페이지, 블로그 혹은 다른 사이트의 프로필 페이지 URL" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 54fd422177..06391a5da1 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:20+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:30+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -154,7 +154,7 @@ msgstr "Нема таква страница." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -517,7 +517,8 @@ msgstr "Примачот не е пронајден." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" "Неможете да испраќате директни пораки на корисници што не Ви се пријатели." @@ -604,7 +605,7 @@ msgstr "Не можев да го пронајдам целниот корисн #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Тој прекар е во употреба. Одберете друг." @@ -614,7 +615,7 @@ msgstr "Тој прекар е во употреба. Одберете друг. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Неправилен прекар." @@ -627,7 +628,7 @@ msgstr "Неправилен прекар." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "Главната страница не е важечка URL-адреса." @@ -637,7 +638,7 @@ msgstr "Главната страница не е важечка URL-адрес #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "Полното име е предолго (највеќе 255 знаци)." @@ -665,7 +666,7 @@ msgstr[1] "Описот е предолг (дозволено е највеќе #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "Местоположбата е предолга (највеќе 255 знаци)." @@ -820,15 +821,15 @@ msgstr "Жетонот за барање е веќе овластен." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "Се поајви проблем со Вашиот сесиски жетон. Обидете се повторно." @@ -859,7 +860,7 @@ msgstr "Грешка во базата при вметнувањето на auth #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Неочекувано поднесување на образец." @@ -910,19 +911,20 @@ msgstr "Сметка" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Прекар" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Лозинка" @@ -1044,8 +1046,8 @@ msgstr "HTML-методот не е поддржан." #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 -#, php-format -msgid "Unsupported format: %s" +#, fuzzy, php-format +msgid "Unsupported format: %s." msgstr "Неподдржан формат: %s" #. TRANS: Client error displayed requesting a deleted status. @@ -1223,25 +1225,26 @@ msgid "Atom post must be an Atom entry." msgstr "Забелешката преку Atom мора да биде Atom-ставка." #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "Може да работи само со POST-активности." #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "Не може да работи со предмети на активност од типот „%s“." #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, php-format msgid "No content for notice %d." msgstr "Нема содржина за забелешката %d." #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1396,7 +1399,7 @@ msgid "Not a member." msgstr "Не членувате." #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 msgid "Cannot delete someone else's membership." msgstr "Не можам да избришам туѓо членство." @@ -1501,9 +1504,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Корисник без соодветен профил." @@ -1558,9 +1563,10 @@ msgstr "Отсечи" msgid "No file uploaded." msgstr "Нема подигнато податотека." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Одберете квадратна површина од сликата за аватар" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1623,7 +1629,8 @@ msgstr "Резерва" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +#, fuzzy +msgid "Backup your account." msgstr "Направете резервна верзија на сметката" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1665,7 +1672,8 @@ msgstr "Не" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Не го блокирај корисников" #. TRANS: Button label on the user block form. @@ -1682,9 +1690,9 @@ msgid "Yes" msgstr "Да" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Блокирај го корисников" #. TRANS: Server error displayed when blocking a user fails. @@ -1846,7 +1854,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Потврди" @@ -1875,13 +1883,13 @@ msgstr "Програмот не е пронајден." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Не сте сопственик на овој програм." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Се појави проблем со Вашиот сесиски жетон." @@ -1905,12 +1913,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Не го бриши овој програм" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Избриши го програмов" #. TRANS: Client error when trying to delete group while not logged in. @@ -1964,12 +1974,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "Не ја бриши групава" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "Избриши ја групава" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2012,12 +2024,14 @@ msgstr "Дали сте сигурни дека сакате да ја избр #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Не ја бриши оваа забелешка" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Избриши ја оваа забелешка" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2052,13 +2066,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 -msgid "Do not delete this user" +#, fuzzy +msgid "Do not delete this user." msgstr "Не ја бриши групава" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Избриши овој корисник" #. TRANS: Message used as title for design settings for the site. @@ -2222,21 +2237,21 @@ msgid "Use defaults" msgstr "Користи по основно" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Врати основно-зададени нагодувања" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Врати по основно" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Зачувај изглед" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2268,7 +2283,7 @@ msgid "You must be logged in to edit an application." msgstr "Мора да сте најавени за да можете да уредувате програми." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Нема таков програм." @@ -2551,7 +2566,7 @@ msgid "Cannot normalize that email address." msgstr "Не можам да ја нормализирам таа е-поштенска адреса." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Неправилна адреса за е-пошта." @@ -2626,18 +2641,21 @@ msgstr "Нема приемна е-поштенска адреса." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 msgid "Could not update user record." msgstr "Не можев да ја подновам корисничката евиденција." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Приемната е-поштенска адреса е отстранета." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Додадена е нова влезна е-поштенска адреса." @@ -2648,7 +2666,8 @@ msgstr "Веќе сте ја бендисале оваа забелешка!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Тргни од бендисани" #. TRANS: Page title for first page of favorited notices. @@ -2889,12 +2908,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Не го блокирај овој корисник од оваа група" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Блокирај го овој корисник од оваа група" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3223,7 +3244,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Објави MicroID за мојата адреса на Jabber/Google Talk." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Нагодувањата се зачувани." @@ -3639,40 +3661,40 @@ msgstr "Зачувај" msgid "Save license settings" msgstr "Зачувај нагодувања на лиценцата" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Веќе сте најавени." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Неточно корисничко име или лозинка" -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "Грешка при поставувањето на корисникот. Веројатно не се заверени." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Најава" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Најавете се" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Запамети ме" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Отсега врши автоматска најава. Не треба да се користи за јавни сметачи!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Ја загубивте или заборавивте лозинката?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3680,11 +3702,11 @@ msgstr "" "Поради безбедносни причини треба повторно да го внесете Вашето корисничко " "име и лозинка пред да ги смените Вашите нагодувања." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Најавете се со корисничко име и лозинка." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3895,30 +3917,30 @@ msgid "You have not registered any applications yet." msgstr "Сè уште немате регистрирано ниеден програм," #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Поврзани програми" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "За Вашата сметка постојат следниве врски." #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Не сте корисник на тој програм." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, php-format msgid "Unable to revoke access for application: %s." msgstr "Не можам да му го одземам пристапот на програмот: %s." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3927,14 +3949,14 @@ msgstr "" "Успешно одземавте пристап за %1$s и пристапниот жетон што почнува со %2$s." #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "Му немате дозволено пристап до Вашата сметка на ниеден програм." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " @@ -3943,6 +3965,16 @@ msgstr "" "Дали сте програмер? [Регистрирајте клиентски програм за OAuth](%s) за да го " "користите овој примерок на StatusNet." +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "Корисникот не е пронајден." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "Матичната забелешка не е пронајдена." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Забелешката нема профил." @@ -3952,6 +3984,16 @@ msgstr "Забелешката нема профил." msgid "%1$s's status on %2$s" msgstr "%1$s статус на %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Примачот не е пронајден." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4041,17 +4083,21 @@ msgstr "Назначен е неважечки најавен жетон." msgid "Login token expired." msgstr "Најавниот жетон е истечен." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Излезно сандаче за %1$s - стр. %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Излезно сандаче за %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "Ова е Вашето излезно сандче, во кое се наведени приватните пораки кои ги " @@ -4079,40 +4125,42 @@ msgstr "Стара лозинка" msgid "New password" msgstr "Нова лозинка" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" -msgstr "6 или повеќе знаци" +#: actions/passwordsettings.php:109 actions/register.php:423 +msgid "6 or more characters." +msgstr "6 или повеќе знаци." -#: actions/passwordsettings.php:113 -msgid "Same as password above" -msgstr "Исто како лозинката погоре" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +msgid "Same as password above." +msgstr "Исто како лозинката погоре." #: actions/passwordsettings.php:117 msgid "Change" msgstr "Промени" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Лозинката мора да содржи барем 6 знаци." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Лозинките не се совпаѓаат." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Неточна стара лозинка" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Грешка во зачувувањето на корисникот; неправилен." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +msgid "Cannot save new password." msgstr "Не можам да ја зачувам новата лозинка." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Лозинката е зачувана." @@ -4440,14 +4488,14 @@ msgid "Profile information" msgstr "Информации за профил" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 мали букви или бројки, без интерпукциски знаци и празни места." #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4455,13 +4503,13 @@ msgstr "Име и презиме" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Домашна страница" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site." msgstr "" "URL-адреса на Вашата домашна страница, блог или профил на друго мрежно место." @@ -4469,7 +4517,7 @@ msgstr "" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4477,28 +4525,29 @@ msgstr[0] "Опишете се себеси и своите интереси с msgstr[1] "Опишете се себеси и своите интереси со %d знаци." #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Опишете се себеси и Вашите интереси" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Биографија" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Местоположба" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Каде се наоѓате, на пр. „Град, Област, Земја“." @@ -4518,8 +4567,10 @@ msgstr "Ознаки" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Ознаки за Вас самите (букви, бројки, -, . и _), одделени со запирка или " "празно место" @@ -4531,7 +4582,8 @@ msgstr "Јазик" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Претпочитан јазик" #. TRANS: Dropdownlist label in form for profile settings. @@ -4546,8 +4598,9 @@ msgstr "Во која часовна зона обично се наоѓате?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Автоматски претплаќај ме на секој што се претплаќа на мене (најдобро за " "ботови и сл.)" @@ -4555,7 +4608,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4574,9 +4627,9 @@ msgstr "Јазикот е предолг (највеќе до 50 знаци)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Неважечка ознака: „%s“" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4819,6 +4872,12 @@ msgstr "Пронаоѓање на лозинка" msgid "Password recovery requested" msgstr "Побарано е пронаоѓање на лозинката" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Лозинката е зачувана." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4829,11 +4888,6 @@ msgstr "Непознато дејство" msgid "6 or more characters, and do not forget it!" msgstr "6 или повеќе знаци - не заборавајте!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -msgid "Same as password above." -msgstr "Исто како лозинката погоре." - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4885,13 +4939,8 @@ msgstr "Лозинката мора да има барем 6 знаци." msgid "Password and confirmation do not match." msgstr "Двете лозинки не се совпаѓаат." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -msgid "Cannot save new password." -msgstr "Не можам да ја зачувам новата лозинка." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Грешка во поставувањето на корисникот." @@ -4900,93 +4949,94 @@ msgstr "Грешка во поставувањето на корисникот." msgid "New password successfully saved. You are now logged in." msgstr "Новата лозинка е успешно зачувана. Сега сте најавени." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Жалиме, регистрацијата е само со покана." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Жалиме, неважечки код за поканата." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Регистрацијата е успешна" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Регистрирај се" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Регистрирањето не е дозволено." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Не може да се регистрирате ако не ја прифаќате лиценцата." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Адресата веќе постои." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Погрешно име или лозинка." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "Со овој образец можете да создадете нова сметка. Потоа ќе можете да " "објавувате забелешки и да се поврзувате со пријатели и колеги. " -#: actions/register.php:437 -msgid "6 or more characters." -msgstr "6 или повеќе знаци." - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Е-пошта" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "Се користи само за подновувања, објави и повраќање на лозинка." -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Подолго име, по можност Вашето вистинско име и презиме" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL на Вашата домашна страница, блог или профил на друго мрежно место." +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Каде се наоѓате, на пр. „Град, Област, Земја“." -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "Сфаќам дека содржината и податоците на %1$s се лични и доверливи." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "Авторското правво на мојот текст и податотеки го има %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "" "Јас ја задржувам сопственоста на авторското право врз мојот текст и " "податотеки." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Сите права задржани." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4995,7 +5045,7 @@ msgstr "" "Мојот текст и податотеки се достапни под %s, освен следниве приватни " "податоци: лозинка, е-пошта, IM-адреса и телефонски број." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5029,7 +5079,7 @@ msgstr "" "Ви благодариме што се зачленивте и Ви пожелуваме пријатни мигови со оваа " "служба." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5062,7 +5112,8 @@ msgid "User nickname" msgstr "Прекар на корисникот" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Прекар на корисникот што сакате да го следите." #: actions/remotesubscribe.php:132 @@ -5070,7 +5121,8 @@ msgid "Profile URL" msgstr "URL на профилот" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "URL на Вашиот профил на друга соодветна служба за микроблогирање." #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5080,7 +5132,8 @@ msgid "Subscribe" msgstr "Претплати се" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "Неправилно URL на профил (лош формат)" #: actions/remotesubscribe.php:167 @@ -5281,7 +5334,7 @@ msgstr "На ова мрежно место не можете да одзема msgid "User doesn't have this role." msgstr "Корисникот ја нема оваа улога." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5323,87 +5376,87 @@ msgstr "Вклучи извод од поправка на грешки за с msgid "Save site settings" msgstr "Зачувај нагодувања на мреж. место" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Мора да сте најавени за да можете да го видите програмот." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Профил на програмот" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Икона" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Име" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Организација" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Опис" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Статистики" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "Создадено од %1$s - основен пристап: %2$s - %3$d корисници" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Дејства на програмот" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Клуч за промена и тајна" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Избриши" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Инфо за програмот" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Потрошувачки клуч" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Потрошувачка тајна" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "URL на жетонот на барањето" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "URL на пристапниот жетон" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "Одобри URL" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5411,7 +5464,7 @@ msgstr "" "Напомена: Поддржуваме HMAC-SHA1 потписи. Не поддржуваме потпишување со прост " "текст." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" "Дали сте сигурни дека сакате да го смените Вашиот кориснички клуч и тајна?" @@ -5505,16 +5558,18 @@ msgid "Group profile" msgstr "Профил на група" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Забелешка" @@ -5660,7 +5715,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s го/ја означи %2$s" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5912,7 +5967,8 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Зачувај ја објавава" #. TRANS: Title for SMS settings. @@ -5970,7 +6026,8 @@ msgstr "Телефонски број за СМС" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "" "Телефонски број, без интерпункциски знаци и празни места, со повикувачки код" @@ -6307,8 +6364,9 @@ msgstr "Означи %s" msgid "User profile" msgstr "Кориснички профил" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Фото" @@ -6325,6 +6383,11 @@ msgstr "" "Ознаки за овој корисник (букви, бројки, -, . и _), одделени со запирка или " "празно место" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Неважечка ознака: „%s“" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6360,7 +6423,7 @@ msgstr "!Во барањето нема ID на профилот." msgid "Unsubscribed" msgstr "Претплатата е откажана" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6392,8 +6455,8 @@ msgstr "Неважечки текст за добредојде. Дозволе #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 -#, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +#, fuzzy, php-format +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Неважечки опис по основно: „%1$s“ не е корисник." #. TRANS: Link description in user account settings menu. @@ -6453,55 +6516,71 @@ msgstr "Дали да им е дозволено на корисниците д #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "Зачувај кориснички нагодувања" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Одобрете ја претплатата" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Проверете ги овие податоци за да се осигурате дека сакате да се претплатите " "за забелешките на овој корисник. Ако не сакате да се претплатите, едноставно " "кликнете на „Одбиј“" +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Лиценца" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Прифати" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Претплати се на корисников" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Одбиј" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Одбиј ја оваа претплата" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Нема барање за проверка!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Претплатата е одобрена" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6511,11 +6590,12 @@ msgstr "" "инструкциите на мрежното место за да дознаете како се одобрува претплата. " "Жетонот на Вашата претплата е:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Претплатата е одбиена" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6525,39 +6605,64 @@ msgstr "" "инструкциите на мрежното место за да дознаете како се одбива претплата во " "потполност." -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "URI-то на следачот „%s“ не е пронајдено тука." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "Следениот URI „%s“ е предолг." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "Следеното URI „%s“ е за локален корисник." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "Профилната URL-адреса „%s“ е за локален корисник." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"Лиценцата на каналот на следачот „%1$s“ не е соодветна на лиценцата на " +"мрежното место „%2$s“." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "URL-адресата „%s“ за аватар е неважечка." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Не можам да ја прочитам URL на аватарот „%s“." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Погрешен тип на слика за URL на аватарот „%s“." #. TRANS: Page title for profile design page. @@ -7772,6 +7877,11 @@ msgstr "Менувањето на лозинки не е дозволено." msgid "Block" msgstr "Блокирај" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Блокирај го корисников" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8226,6 +8336,11 @@ msgstr "Овластени поврзани програми" msgid "Database error" msgstr "Грешка во базата на податоци" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Избриши овој корисник" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8262,6 +8377,21 @@ msgstr "Промена на бои" msgid "Use defaults" msgstr "Користи по основно" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Врати основно-зададени нагодувања" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Врати по основно" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Зачувај изглед" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8366,7 +8496,6 @@ msgid "Grant this user the \"%s\" role" msgstr "Додели улога „%s“ на корисников" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 мали букви или бројки, без интерпукциски знаци и празни места." @@ -8379,7 +8508,7 @@ msgid "Describe the group or topic" msgstr "Опишете ја групата или темата" #: lib/groupeditform.php:163 -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d character or less" msgid_plural "Describe the group or topic in %d characters or less" msgstr[0] "Опишете ја групата или темата со највеќе %d знак" @@ -9036,9 +9165,8 @@ msgid "Send" msgstr "Испрати" #: lib/messagelist.php:77 -#, fuzzy msgid "Messages" -msgstr "Порака" +msgstr "Пораки" #: lib/messagelistitem.php:123 lib/noticelist.php:522 msgid "from" @@ -9144,6 +9272,10 @@ msgstr "Одговори на забелешкава" msgid "Reply" msgstr "Одговор" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Избриши ја оваа забелешка" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Забелешката е повторена" @@ -9419,6 +9551,10 @@ msgstr "Покани" msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете пријатели и колеги да Ви се придружат на %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Претплати се на корисников" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9693,3 +9829,16 @@ msgstr "Неважечки XML. Нема XRD-корен." #, php-format msgid "Getting backup from file '%s'." msgstr "Земам резерва на податотеката „%s“." + +#~ msgid "6 or more characters" +#~ msgstr "6 или повеќе знаци" + +#~ msgid "Same as password above" +#~ msgstr "Исто како лозинката погоре" + +#~ msgid "Can't save new password." +#~ msgstr "Не можам да ја зачувам новата лозинка." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "" +#~ "URL на Вашата домашна страница, блог или профил на друго мрежно место." diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index a30ab2d388..1da28a6543 100644 --- a/locale/ml/LC_MESSAGES/statusnet.po +++ b/locale/ml/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:22+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:32+0000\n" "Language-Team: Malayalam \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ml\n" "X-Message-Group: #out-statusnet-core\n" @@ -151,7 +151,7 @@ msgstr "അത്തരത്തിൽ ഒരു താളില്ല." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -423,7 +423,7 @@ msgstr "%s എന്ന ഉപയോക്താവിന്റെ സമയര #: actions/subscriptions.php:51 #, php-format msgid "%s subscriptions" -msgstr "" +msgstr "%s എന്ന ഉപയോക്താവിന്റെ വരിക്കാരനാകലുകൾ" #. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname. #. TRANS: Title for Atom favorites feed. @@ -501,7 +501,8 @@ msgstr "സ്വീകർത്താവായ ഉപയോക്താവി #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "താങ്കളുടെ സുഹൃത്തുക്കളല്ലാത്തവർക്ക് നേരിട്ടുള്ള സന്ദേശങ്ങൾ അയയ്ക്കാൻ കഴിയില്ല." #. TRANS: Client error displayed trying to direct message self (403). @@ -584,7 +585,7 @@ msgstr "ലക്ഷ്യമിട്ട ഉപയോക്താവിനെ #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "വിളിപ്പേര് മുമ്പേ ഉപയോഗത്തിലുണ്ട്. മറ്റൊരെണ്ണം ശ്രമിക്കുക." @@ -594,7 +595,7 @@ msgstr "വിളിപ്പേര് മുമ്പേ ഉപയോഗത് #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "സാധുവായ വിളിപ്പേര് അല്ല." @@ -607,7 +608,7 @@ msgstr "സാധുവായ വിളിപ്പേര് അല്ല." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "ഹോംപേജിന്റെ യൂ.ആർ.എൽ. സാധുവല്ല." @@ -617,7 +618,7 @@ msgstr "ഹോംപേജിന്റെ യൂ.ആർ.എൽ. സാധുവ #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "പൂർണ്ണ നാമത്തിന്റെ നീളം വളരെ കൂടുതലാണ് (പരമാവധി 255 അക്ഷരങ്ങൾ)." @@ -645,7 +646,7 @@ msgstr[1] "വിവരണത്തിനു നീളം കൂടുതലാ #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "" @@ -800,15 +801,15 @@ msgstr "അഭ്യർത്ഥനാ ചീട്ട് മുമ്പേ ത #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "താങ്കളുടെ സെഷൻ ചീട്ടിൽ ഒരു ചെറിയ പ്രശ്നം. ദയവായി വീണ്ടും ശ്രമിക്കുക." @@ -839,7 +840,7 @@ msgstr "" #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "അപ്രതീക്ഷിത ഫോം സമർപ്പിക്കൽ." @@ -884,19 +885,20 @@ msgstr "അംഗത്വം" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "വിളിപ്പേര്" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "രഹസ്യവാക്ക്" @@ -1014,8 +1016,8 @@ msgstr "എച്ച്.റ്റി.റ്റി.പി. രീതി പിന #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 -#, php-format -msgid "Unsupported format: %s" +#, fuzzy, php-format +msgid "Unsupported format: %s." msgstr "പിന്തുണയ്ക്കാത്തയിനം തരം: %s" #. TRANS: Client error displayed requesting a deleted status. @@ -1191,25 +1193,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, php-format msgid "No content for notice %d." msgstr "%d എന്ന അറിയിപ്പിനു ഉള്ളടക്കമില്ല" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1365,7 +1368,7 @@ msgid "Not a member." msgstr "അംഗം അല്ല" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 msgid "Cannot delete someone else's membership." msgstr "മറ്റൊരാളുടെ അംഗത്വം മായ്ക്കാനാവില്ല." @@ -1468,9 +1471,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "" @@ -1525,10 +1530,11 @@ msgstr "വെട്ടിച്ചെറുതാക്കുക" msgid "No file uploaded." msgstr "പ്രമാണമൊന്നും അപ്‌ലോഡ് ചെയ്തിട്ടില്ല." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" -msgstr "" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." +msgstr "ലോഗോ ആക്കാൻ ചിത്രത്തിന്റെ ഒരു സമചതുരത്തിലുള്ള ഭാഗം തിരഞ്ഞെടുക്കുക." #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. #. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present. @@ -1585,7 +1591,8 @@ msgstr "ബാക്ക്അപ്" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +#, fuzzy +msgid "Backup your account." msgstr "താങ്കളുടെ അംഗത്വത്തിന്റെ ബാക്ക്അപ് എടുക്കുക" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1623,7 +1630,8 @@ msgstr "അല്ല" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "ഈ ഉപയോക്താവിനെ തടയരുത്" #. TRANS: Button label on the user block form. @@ -1640,9 +1648,9 @@ msgid "Yes" msgstr "അതെ" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "ഈ ഉപയോക്താവിനെ തടയുക" #. TRANS: Server error displayed when blocking a user fails. @@ -1802,7 +1810,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "സ്ഥിരീകരിക്കുക" @@ -1831,13 +1839,13 @@ msgstr "" #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "താങ്കളുടെ സെഷൻ ചീട്ടിൽ ഒരു പ്രശ്നമുണ്ടായിരുന്നു." @@ -1858,13 +1866,15 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" -msgstr "" +#, fuzzy +msgid "Do not delete this application." +msgstr "ഈ അറിയിപ്പ് മായ്ക്കരുത്" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" -msgstr "" +#, fuzzy +msgid "Delete this application." +msgstr "ഈ അറിയിപ്പ് മായ്ക്കുക" #. TRANS: Client error when trying to delete group while not logged in. #: actions/deletegroup.php:64 @@ -1914,12 +1924,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "ഈ സംഘത്തെ മായ്ക്കരുത്" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "ഈ സംഘത്തെ മായ്ക്കുക" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -1962,12 +1974,14 @@ msgstr "ഈ അറിയിപ്പ് ഒഴിവാക്കണമെന് #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "ഈ അറിയിപ്പ് മായ്ക്കരുത്" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "ഈ അറിയിപ്പ് മായ്ക്കുക" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2002,13 +2016,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 -msgid "Do not delete this user" +#, fuzzy +msgid "Do not delete this user." msgstr "ഈ ഉപയോക്താവിനെ നീക്കം ചെയ്യരുത്" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "ഈ ഉപയോക്താവിനെ നീക്കം ചെയ്യുക" #. TRANS: Message used as title for design settings for the site. @@ -2174,21 +2189,21 @@ msgid "Use defaults" msgstr "സ്വതേയുള്ളവ ഉപയോഗിക്കുക" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "സ്വതേയുള്ള രൂപകല്പനകൾ പുനഃസ്ഥാപിക്കുക" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "മുമ്പ് സ്വതേയുണ്ടായിരുന്നതിലേയ്ക്ക് പുനഃസ്ഥാപിക്കുക" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "രൂപകല്പന സേവ്‌ ചെയ്യുക" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2220,7 +2235,7 @@ msgid "You must be logged in to edit an application." msgstr "" #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "" @@ -2501,7 +2516,7 @@ msgid "Cannot normalize that email address." msgstr "സാധുവായ ഇമെയിൽ വിലാസം അല്ല." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "സാധുവായ ഇമെയിൽ വിലാസം അല്ല." @@ -2576,18 +2591,21 @@ msgstr "സ്വീകരിക്കാനുള്ള ഇമെയിൽ വ #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 msgid "Could not update user record." msgstr "ഉപയോക്തൃ രേഖകൾ പുതുക്കാൻ കഴിഞ്ഞില്ല." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "സ്വീകരിക്കാനുള്ള ഇമെയിൽ വിലാസം നീക്കം ചെയ്തിരിക്കുന്നു." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "സ്വീകരിക്കാനുള്ള പുതിയ ഇമെയിൽ വിലാസം കൂട്ടിച്ചേർത്തിരിക്കുന്നു." @@ -2598,7 +2616,8 @@ msgstr "ഈ അറിയിപ്പ് മുമ്പേ തന്നെ പ #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "പ്രിയങ്കരമാണ് എന്നത് നീക്കം ചെയ്യുക" #. TRANS: Page title for first page of favorited notices. @@ -2832,12 +2851,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "ഈ സംഘത്തിൽ നിന്നും ഈ ഉപയോക്താവിനെ തടയരുത്" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "ഈ സംഘത്തിൽ നിന്നും ഈ ഉപയോക്താവിനെ തടയുക" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3159,7 +3180,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "ഇപ്പോഴത്തെ സ്ഥിരീകരിക്കപ്പെട്ട ജാബ്ബർ/ജിറ്റോക് വിലാസം" #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "ക്രമീകരണങ്ങൾ സേവ് ചെയ്തു." @@ -3540,39 +3562,39 @@ msgstr "സേവ് ചെയ്യുക" msgid "Save license settings" msgstr "അനുമതി സജ്ജീകരണങ്ങൾ സേവ് ചെയ്യുക" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "മുമ്പേ തന്നെ ലോഗിൻ ചെയ്തിട്ടുണ്ട്." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "ഉപയോക്തൃനാമമോ രഹസ്യവാക്കോ തെറ്റാണ്." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "ഉപയോക്തൃ സജ്ജീകരണത്തിൽ പിഴവുണ്ടായി. താങ്കൾക്ക് മിക്കവാറും അനുമതിയുണ്ടാവില്ല." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "പ്രവേശിക്കുക" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "സൈറ്റിലേക്ക് പ്രവേശിക്കുക" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "എന്നെ ഓർത്തുവെയ്ക്കുക" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "ഭാവിയിൽ സ്വയം ലോഗിൻ ചെയ്യുക; പങ്ക് വെച്ച് ഉപയോഗിക്കുന്ന കമ്പ്യൂട്ടറുകളിൽ പാടില്ല!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "രഹസ്യവാക്ക് നഷ്ടപ്പെടുകയോ മറക്കുകയോ ചെയ്തോ?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3580,11 +3602,11 @@ msgstr "" "സുരക്ഷാകാരണങ്ങളാൽ, താങ്കളുടെ ഉപയോക്തൃനാമവും രഹസ്യവാക്കും സജ്ജീകരണങ്ങളിൽ മാറ്റം വരുത്തുന്നതിനു " "മുമ്പ് ഒരു പ്രാവശ്യം നൽകേണ്ടതാണ്." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "താങ്കളുടെ ഉപയോക്തൃനാമവും രഹസ്യവാക്കും ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3783,30 +3805,30 @@ msgid "You have not registered any applications yet." msgstr "" #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "" #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, php-format msgid "Unable to revoke access for application: %s." msgstr "" #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3814,20 +3836,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "" #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "ഉപയോക്താവിനെ കണ്ടത്താനായില്ല." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "മാതൃ അറിയിപ്പ് കണ്ടെത്താനായില്ല." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "" @@ -3837,6 +3869,16 @@ msgstr "" msgid "%1$s's status on %2$s" msgstr "%2$s പദ്ധതിയിൽ %1$s എന്ന ഉപയോക്താവിന്റെ സ്ഥിതിവിവരം" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "സ്വീകർത്താവായ ഉപയോക്താവിനെ കണ്ടെത്താനായില്ല." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -3926,17 +3968,21 @@ msgstr "വ്യക്തമാക്കിയത് അസാധുവായ msgid "Login token expired." msgstr "ലോഗിൻ ചീട്ട് കാലഹരണപ്പെട്ടിരിക്കുന്നു." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "%1$s എന്ന ഉപയോക്താവിന്റെ ഔട്ട്ബോക്സ് - താൾ %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "%s എന്ന ഉപയോക്താവിന്റെ ഔട്ട്ബോക്സ്" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "ഇത് താങ്കളുടെ ഔട്ട്ബോക്സ് ആണ്, താങ്കൾ അയച്ച സ്വകാര്യ സന്ദേശങ്ങൾ ഇവിടെ കാണാം." @@ -3962,40 +4008,42 @@ msgstr "പഴയ രഹസ്യവാക്ക്" msgid "New password" msgstr "പുതിയ രഹസ്യവാക്ക്" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" -msgstr "ആറോ അതിലധികമോ അക്ഷരങ്ങൾ" +#: actions/passwordsettings.php:109 actions/register.php:423 +msgid "6 or more characters." +msgstr "ആറോ അതിലധികമോ അക്ഷരങ്ങൾ." -#: actions/passwordsettings.php:113 -msgid "Same as password above" -msgstr "മുകളിൽ നൽകിയ അതേ രഹസ്യവാക്ക്" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +msgid "Same as password above." +msgstr "മുകളിൽ നൽകിയ അതേ രഹസ്യവാക്ക്." #: actions/passwordsettings.php:117 msgid "Change" msgstr "മാറ്റുക" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "രഹസ്യവാക്കിന് ആറോ അതിലധികമോ അക്ഷരങ്ങളുണ്ടായിരിക്കണം." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "രഹസ്യവാക്കുകൾ തമ്മിൽ യോജിക്കുന്നില്ല" -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "പഴയ രഹസ്യവാക്ക് തെറ്റാണ്" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "" -#: actions/passwordsettings.php:186 -msgid "Can't save new password." -msgstr "പുതിയ രഹസ്യവാക്ക് സേവ് ചെയ്യാനായില്ല." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +msgid "Cannot save new password." +msgstr "പുതിയ രഹസ്യവാക്ക് സേവ് ചെയ്യാനാവില്ല." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "രഹസ്യവാക്ക് സേവ് ചെയ്തിരിക്കുന്നു." @@ -4081,11 +4129,11 @@ msgstr "" #. TRANS: Checkbox label in Paths admin panel. #: actions/pathsadminpanel.php:263 msgid "Fancy URLs" -msgstr "" +msgstr "അലങ്കൃത യൂ.ആർ.എല്ലുകൾ" #: actions/pathsadminpanel.php:265 msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" +msgstr "അലങ്കൃത (വായിക്കാനും ഓർത്തിരിക്കാനും എളുപ്പമായവ) യൂ.ആർ.എല്ലുകൾ ഉപയോഗിക്കണോ?" #: actions/pathsadminpanel.php:272 msgid "Theme" @@ -4318,14 +4366,14 @@ msgid "Profile information" msgstr "" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4333,13 +4381,13 @@ msgstr "പൂർണ്ണനാമം" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "ഹോംപേജ്" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site." msgstr "" "താങ്കളുടെ ഹോംപേജിന്റെ, ബ്ലോഗിന്റെ അല്ലെങ്കിൽ മറ്റൊരു സൈറ്റിലെ താങ്കളെക്കുറിച്ചുള്ള " @@ -4348,7 +4396,7 @@ msgstr "" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4356,28 +4404,29 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "താങ്കളെക്കുറിച്ചും താങ്കളുടെ ഇഷ്ടങ്ങളെക്കുറിച്ചും വിവരിക്കുക" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "സ്ഥലം" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "താങ്കളെവിടെയാണ്, അതായത് \"നഗരം, സംസ്ഥാനം (അഥവ പ്രദേശം), രാജ്യം\" എന്ന്" @@ -4397,7 +4446,8 @@ msgstr "റ്റാഗുകൾ" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" #. TRANS: Dropdownlist label in form for profile settings. @@ -4407,7 +4457,8 @@ msgstr "ഭാഷ" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "പ്രിയങ്കര ഭാഷ" #. TRANS: Dropdownlist label in form for profile settings. @@ -4423,13 +4474,13 @@ msgstr "താങ്കൾ സാധാരണയുണ്ടാകാറുള #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4448,9 +4499,9 @@ msgstr "ഭാഷയുടെ നീളം വളരെ കൂടുതലാണ #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "അസാധുവായ റ്റാഗ്: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4688,6 +4739,12 @@ msgstr "രഹസ്യവാക്ക് വീണ്ടെടുക്കു msgid "Password recovery requested" msgstr "രഹസ്യവാക്ക് വീണ്ടെടുക്കൽ ആവശ്യപ്പെട്ടിരിക്കുന്നു" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "രഹസ്യവാക്ക് സേവ് ചെയ്തിരിക്കുന്നു." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4698,11 +4755,6 @@ msgstr "അജ്ഞാതമായ പ്രവൃത്തി" msgid "6 or more characters, and do not forget it!" msgstr "ആറോ അതിലധികമോ അക്ഷരങ്ങൾ, അത് മറക്കരുത്!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -msgid "Same as password above." -msgstr "മുകളിൽ നൽകിയ അതേ രഹസ്യവാക്ക്." - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4754,13 +4806,8 @@ msgstr "രഹസ്യവാക്കിന് ആറോ അതിലധിക msgid "Password and confirmation do not match." msgstr "രഹസ്യവാക്കും സ്ഥിരീകരണവും യോജിക്കുന്നില്ല." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -msgid "Cannot save new password." -msgstr "പുതിയ രഹസ്യവാക്ക് സേവ് ചെയ്യാനാവില്ല." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "ഉപയോക്താവിനെ സജ്ജീകരിക്കുന്നതിൽ പിഴവുണ്ടായി." @@ -4769,102 +4816,101 @@ msgstr "ഉപയോക്താവിനെ സജ്ജീകരിക്ക msgid "New password successfully saved. You are now logged in." msgstr "പുതിയ രഹസ്യവാക്ക് വിജയകരമായി സേവ് ചെയ്തു. താങ്കൾക്ക് ലോഗിൻ ചെയ്യാവുന്നതാണ്." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "ക്ഷമിക്കുക, ക്ഷണിക്കപ്പെട്ടവർക്കു മാത്രമേ അംഗത്വമെടുക്കാനാകൂ." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "ക്ഷമിക്കുക, ക്ഷണത്തിന്റെ കോഡ് അസാധുവാണ്." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "അംഗത്വമെടുക്കൽ വിജയകരം" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "അംഗത്വമെടുക്കുക" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "അംഗത്വമെടുക്കൽ അനുവദിച്ചിട്ടില്ല." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "താങ്കൾ അനുവാദ പത്രം അംഗീകരിക്കുകയില്ലെങ്കിൽ അംഗത്വമെടുക്കാനുകുകയില്ല." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "ഇമെയിൽ വിലാസം മുമ്പേ നിലവിലുണ്ട്." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "ഉപയോക്തൃനാമമോ രഹസ്യവാക്കോ അസാധുവാണ്." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "ഈ ഫോം ഉപയോഗിച്ച് താങ്കൾക്ക് പുതിയൊരു അംഗത്വം സൃഷ്ടിക്കാനാകും. പിന്നീട് താങ്കൾക്ക് അറിയിപ്പുകൾ " "പ്രസിദ്ധീകരിക്കാനും സുഹൃത്തുക്കളേയും സഹപ്രവർത്തകരേയും കണ്ണിചേർക്കാനുമാകും. " -#: actions/register.php:437 -msgid "6 or more characters." -msgstr "ആറോ അതിലധികമോ അക്ഷരങ്ങൾ." - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "ഇമെയിൽ" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "" "പുതുക്കൽ വിവരങ്ങൾക്കും, അറിയിപ്പുകൾക്കും, രഹസ്യവാക്ക് വീണ്ടെടുക്കൽ പ്രവർത്തനത്തിനും മാത്രം " "ഉപയോഗിച്ചത്" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "വലിയ പേര്, താങ്കളുടെ \"യഥാർത്ഥ\" പേര് നൽകാൻ താത്പര്യപ്പെടുന്നു" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "" -"താങ്കളുടെ ഹോംപേജിന്റെ, ബ്ലോഗിന്റെ അല്ലെങ്കിൽ മറ്റൊരു സൈറ്റിലെ താങ്കളെക്കുറിച്ചുള്ള " -"താളിലേയ്ക്കുള്ള യൂ.ആർ.എൽ." +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "താങ്കളെവിടെയാണ്, അതായത് \"നഗരം, സംസ്ഥാനം (അഥവ പ്രദേശം), രാജ്യം\" എന്ന്" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "എന്റെ എഴുത്തുകളും പ്രമാണങ്ങളും എന്റെ സ്വന്തം പകർപ്പവകാശത്തിലായിരിക്കും." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "എല്ലാ അവകാശങ്ങളും സംരക്ഷിതം." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4883,7 +4929,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -4912,7 +4958,8 @@ msgid "User nickname" msgstr "ഉപയോക്തൃ വിളിപ്പേര്" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "താങ്കൾക്ക് പിന്തുടരേണ്ട ഉപയോക്താവിന്റെ വിളിപ്പേര്" #: actions/remotesubscribe.php:132 @@ -4920,7 +4967,7 @@ msgid "Profile URL" msgstr "" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -4930,8 +4977,9 @@ msgid "Subscribe" msgstr "വരിക്കാരാകുക" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" -msgstr "" +#, fuzzy +msgid "Invalid profile URL (bad format)." +msgstr "പ്രമാണത്തിന്റെ പേര് അസാധുവാണ്." #: actions/remotesubscribe.php:167 msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." @@ -5115,7 +5163,7 @@ msgstr "" msgid "User doesn't have this role." msgstr "" -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "സ്റ്റാറ്റസ്‌നെറ്റ്" @@ -5157,87 +5205,87 @@ msgstr "" msgid "Save site settings" msgstr "സൈറ്റ് സജ്ജീകരണങ്ങൾ ചേവ് ചെയ്യുക" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "" -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "ഐകോൺ" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "പേര്" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "സംഘടന" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "വിവരണം" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "സ്ഥിതിവിവരക്കണക്കുകൾ" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "പുനഃക്രമീകരണ ചാവിയും രഹസ്യവും" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "മായ്ക്കുക" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "ഉപയോക്തൃ രഹസ്യം" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "അഭ്യർത്ഥനാ ചീട്ടിന്റെ യൂ.ആർ.എൽ." -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "അഭിഗമ്യതാ ചീട്ടിന്റെ യൂ.ആർ.എൽ." -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "അംഗീകരണത്തിനുള്ള യൂ.ആർ.എൽ." -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5245,7 +5293,7 @@ msgstr "" "ശ്രദ്ധിക്കുക: HMAC-SHA1 ഒപ്പുകളാണ് ഞങ്ങൾ പിന്തുണയ്ക്കുന്നത്. പ്ലെയിൻ-ടെക്സ്റ്റ് ഒപ്പ് രീതി ഞങ്ങൾ " "പിന്തുണയ്ക്കുന്നില്ല." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "ഉപയോക്തൃ ചാവിയും രഹസ്യവും പുനഃക്രമീകരണം എന്ന് താങ്കൾക്ക് തീർച്ചയാണോ?" @@ -5333,16 +5381,18 @@ msgid "Group profile" msgstr "" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "യൂ.ആർ.എൽ." #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "കുറിപ്പ്" @@ -5478,7 +5528,7 @@ msgid "%1$s tagged %2$s" msgstr "" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5722,7 +5772,8 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "സൈറ്റ് അറിയിപ്പ് സേവ് ചെയ്യുക" #. TRANS: Title for SMS settings. @@ -5782,7 +5833,7 @@ msgstr "എസ്.എം.എസ്. ഫോൺ നമ്പർ." #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +msgid "Phone number, no punctuation or spaces, with area code." msgstr "" #. TRANS: Form legend for SMS preferences form. @@ -6107,8 +6158,9 @@ msgstr "റ്റാഗ് %s" msgid "User profile" msgstr "" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "ഛായാചിത്രം" @@ -6123,6 +6175,11 @@ msgid "" "separated" msgstr "" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "അസാധുവായ റ്റാഗ്: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6156,7 +6213,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6187,7 +6244,7 @@ msgstr "" #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" #. TRANS: Link description in user account settings menu. @@ -6247,102 +6304,143 @@ msgstr "പുതിയ ഉപയോക്താക്കളെ ക്ഷണി #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "ഉപയോക്തൃ സജ്ജീകരണങ്ങൾ സേവ് ചെയ്യുക" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "വരിക്കാരനാകൽ അംഗീകരിക്കുക" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "അനുമതി" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "സ്വീകരിക്കുക" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "ഈ ഉപയോക്താവിന്റെ വരിക്കാരൻ/വരിക്കാരി ആകുക" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "നിരാകരിക്കുക" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "ഈ വരിക്കാരനാകൽ നിരസിക്കുക" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "വരിക്കാരനാകൽ അംഗീകരിക്കപ്പെട്ടു" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "വരിക്കാരനാകൽ നിരസിക്കപ്പെട്ടു" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " "subscription." msgstr "" -#: actions/userauthorization.php:303 +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 #, php-format -msgid "Listener URI ‘%s’ not found here." +msgid "Listener URI \"%s\" not found here." msgstr "" -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." +msgstr "സ്രോതസ്സ് യൂ.ആർ.എൽ. വളരെ വലുതാണ്." -#: actions/userauthorization.php:314 +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 #, php-format -msgid "Listenee URI ‘%s’ is a local user." +msgid "Listenee URI \"%s\" is a local user." msgstr "" -#: actions/userauthorization.php:329 +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 #, php-format -msgid "Profile URL ‘%s’ is for a local user." +msgid "Profile URL \"%s\" is for a local user." msgstr "" -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +"അറിയിപ്പിന്റെ ഉപയോഗാനുമതിയായ് ‘%1$s’ സൈറ്റിന്റെ ഉപയോഗാനുമതിയായ ‘%2$s’ എന്നതുമായി " +"ചേർന്നു പോകുന്നില്ല." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." +msgstr "സ്രോതസ്സ് യൂ.ആർ.എൽ. അസാധുവാണ്." -#: actions/userauthorization.php:350 +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 #, php-format -msgid "Can’t read avatar URL ‘%s’." +msgid "Cannot read avatar URL \"%s\"." msgstr "" -#: actions/userauthorization.php:355 +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 #, php-format -msgid "Wrong image type for avatar URL ‘%s’." +msgid "Wrong image type for avatar URL \"%s\"." msgstr "" #. TRANS: Page title for profile design page. @@ -7515,6 +7613,11 @@ msgstr "രഹസ്യവാക്ക് മാറ്റൽ അനുവദി msgid "Block" msgstr "തടയുക" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "ഈ ഉപയോക്താവിനെ തടയുക" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -7538,7 +7641,7 @@ msgstr "" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. #: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." -msgstr "" +msgstr "ആ ഐ.ഡി.യിൽ അറിയിപ്പ് നിലവിലില്ല." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. @@ -7588,25 +7691,28 @@ msgid "" "Subscribers: %2$s\n" "Notices: %3$s" msgstr "" +"വരിക്കാരനാകലുകൾ: %1$s\n" +"വരിക്കാർ: %2$s\n" +"അറിയിപ്പുകൾ: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. #: lib/command.php:312 msgid "Notice marked as fave." -msgstr "" +msgstr "അറിയിപ്പ് പ്രിയങ്കരമെന്ന് അടയാളപ്പെടുത്തി." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." -msgstr "" +msgstr "%2$s എന്ന സംഘത്തിൽ %1$s എന്ന ഉപയോക്താവ് ചേർന്നു." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." -msgstr "" +msgstr "%2$s എന്ന സംഘത്തിൽ നിന്ന് %1$s എന്ന ഉപയോക്താവ് വിട്ടുപോയി." #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. @@ -7642,7 +7748,7 @@ msgstr "പ്രധാനതാൾ: %s" #: lib/command.php:442 #, php-format msgid "About: %s" -msgstr "" +msgstr "വിവരണം: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). #. TRANS: %s is a remote profile. @@ -7923,6 +8029,11 @@ msgstr "" msgid "Database error" msgstr "ഡാറ്റാബേസ് പിഴവ്" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "ഈ ഉപയോക്താവിനെ നീക്കം ചെയ്യുക" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -7957,6 +8068,21 @@ msgstr "നിറങ്ങൾ മാറ്റുക" msgid "Use defaults" msgstr "സ്വതേയുള്ളവ ഉപയോഗിക്കുക" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "സ്വതേയുള്ള രൂപകല്പനകൾ പുനഃസ്ഥാപിക്കുക" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "മുമ്പ് സ്വതേയുണ്ടായിരുന്നതിലേയ്ക്ക് പുനഃസ്ഥാപിക്കുക" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "രൂപകല്പന സേവ്‌ ചെയ്യുക" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8617,7 +8743,7 @@ msgstr "സ്വീകർത്താവ്" #: lib/messageform.php:166 lib/noticeform.php:186 msgid "Available characters" -msgstr "" +msgstr "ലഭ്യമായ അക്ഷരങ്ങൾ" #: lib/messageform.php:185 lib/noticeform.php:237 msgctxt "Send button for sending notice" @@ -8625,9 +8751,8 @@ msgid "Send" msgstr "അയക്കുക" #: lib/messagelist.php:77 -#, fuzzy msgid "Messages" -msgstr "സന്ദേശം" +msgstr "സന്ദേശങ്ങൾ" #: lib/messagelistitem.php:123 lib/noticelist.php:522 msgid "from" @@ -8636,20 +8761,20 @@ msgstr "അയച്ചത്" #. TRANS: Validation error in form for registration, profile and group settings, etc. #: lib/nickname.php:165 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" +msgstr "വിളിപ്പേരിൽ ഇംഗ്ലീഷ് ചെറിയക്ഷരങ്ങളും അക്കങ്ങളും ഇടവിടാതെ നൽകുക." #. TRANS: Validation error in form for registration, profile and group settings, etc. #: lib/nickname.php:178 msgid "Nickname cannot be empty." -msgstr "" +msgstr "വിളിപ്പേര് ശൂന്യമായിരിക്കാൻ പാടില്ല." #. TRANS: Validation error in form for registration, profile and group settings, etc. #: lib/nickname.php:191 #, php-format msgid "Nickname cannot be more than %d character long." msgid_plural "Nickname cannot be more than %d characters long." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "വിളിപ്പേര് %d അക്ഷരത്തിലധികം ഉണ്ടാകരുത്." +msgstr[1] "വിളിപ്പേര് %d അക്ഷരങ്ങളിലധികം ഉണ്ടാകരുത്." #: lib/noticeform.php:160 msgid "Send a notice" @@ -8662,7 +8787,7 @@ msgstr "എന്തൊക്കെയുണ്ട്, %s?" #: lib/noticeform.php:194 msgid "Attach" -msgstr "" +msgstr "ചേർത്തുവെയ്ക്കുക" #: lib/noticeform.php:198 msgid "Attach a file" @@ -8733,6 +8858,10 @@ msgstr "ഈ അറിയിപ്പിന് മറുപടിയിടുക" msgid "Reply" msgstr "മറുപടി" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "ഈ അറിയിപ്പ് മായ്ക്കുക" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "അറിയിപ്പ് ആവർത്തിച്ചിരിക്കുന്നു" @@ -8887,7 +9016,7 @@ msgstr "ഉപയോക്തൃ സംഘങ്ങൾ" #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" -msgstr "" +msgstr "സമീപകാല റ്റാഗുകൾ" #: lib/publicgroupnav.php:88 msgid "Featured" @@ -8911,7 +9040,7 @@ msgstr "അതെ" #: lib/repeatform.php:132 msgid "Repeat this notice" -msgstr "" +msgstr "ഈ അറിയിപ്പ് ആവർത്തിക്കുക" #: lib/revokeroleform.php:91 #, php-format @@ -8940,7 +9069,7 @@ msgstr "സൈറ്റിൽ തിരയുക" #. TRANS: for searching can be entered. #: lib/searchaction.php:128 msgid "Keyword(s)" -msgstr "" +msgstr "അടയാളവാക്ക്(വാക്കുകൾ)" #. TRANS: Button text for searching site. #: lib/searchaction.php:130 @@ -9009,6 +9138,10 @@ msgstr "ക്ഷണിക്കുക" msgid "Invite friends and colleagues to join you on %s" msgstr "%s-ൽ നമ്മോടൊപ്പം ചേരാൻ സുഹൃത്തുക്കളേയും സഹപ്രവർത്തകരേയും ക്ഷണിക്കുക" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "ഈ ഉപയോക്താവിന്റെ വരിക്കാരൻ/വരിക്കാരി ആകുക" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9279,3 +9412,17 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "ആറോ അതിലധികമോ അക്ഷരങ്ങൾ" + +#~ msgid "Same as password above" +#~ msgstr "മുകളിൽ നൽകിയ അതേ രഹസ്യവാക്ക്" + +#~ msgid "Can't save new password." +#~ msgstr "പുതിയ രഹസ്യവാക്ക് സേവ് ചെയ്യാനായില്ല." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "" +#~ "താങ്കളുടെ ഹോംപേജിന്റെ, ബ്ലോഗിന്റെ അല്ലെങ്കിൽ മറ്റൊരു സൈറ്റിലെ താങ്കളെക്കുറിച്ചുള്ള " +#~ "താളിലേയ്ക്കുള്ള യൂ.ആർ.എൽ." diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 774401abeb..49f3b4053d 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:30+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:36+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.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -153,7 +153,7 @@ msgstr "Ingen slik side." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -514,7 +514,8 @@ msgstr "Fant ikke mottakeren." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "Kan ikke sende direktemeldinger til brukere du ikke er venn med." #. TRANS: Client error displayed trying to direct message self (403). @@ -598,7 +599,7 @@ msgstr "Kunne ikke finne målbruker." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Det nicket er allerede i bruk. Prøv et annet." @@ -608,7 +609,7 @@ msgstr "Det nicket er allerede i bruk. Prøv et annet." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Ugyldig nick." @@ -621,7 +622,7 @@ msgstr "Ugyldig nick." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "Hjemmesiden er ikke en gyldig URL." @@ -631,7 +632,7 @@ msgstr "Hjemmesiden er ikke en gyldig URL." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "Fullt navn er for langt (maks 255 tegn)." @@ -659,7 +660,7 @@ msgstr[1] "Beskrivelsen er for lang (maks %d tegn)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "Plasseringen er for lang (maks 255 tegn)." @@ -817,15 +818,15 @@ msgstr "Du er ikke autorisert." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "Det var et problem med din sesjons-autentisering. Prøv igjen." @@ -856,7 +857,7 @@ msgstr "Databasefeil ved innsetting av oauth_token_association." #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Uventet skjemainnsending." @@ -907,19 +908,20 @@ msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Nick" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Passord" @@ -1041,8 +1043,8 @@ msgstr "HTTP-metoden støttes ikke." #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 -#, php-format -msgid "Unsupported format: %s" +#, fuzzy, php-format +msgid "Unsupported format: %s." msgstr "Formatet støttes ikke: %s" #. TRANS: Client error displayed requesting a deleted status. @@ -1217,25 +1219,26 @@ msgid "Atom post must be an Atom entry." msgstr "Atom-innlegget må være en Atom-oppføring." #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "Kan bare håndtere POST-handlinger." #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "Kan ikke håndtere handlingsobjekttype «%s»." #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, php-format msgid "No content for notice %d." msgstr "Inget innhold for notis %d." #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1401,7 +1404,7 @@ msgid "Not a member." msgstr "Alle medlemmer" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Kunne ikke slette favoritt." @@ -1506,9 +1509,11 @@ msgstr "Du kan laste opp en personlig avatar. Maks filstørrelse er %s." #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Bruker uten samsvarende profil." @@ -1563,9 +1568,10 @@ msgstr "Beskjær" msgid "No file uploaded." msgstr "Ingen fil lastet opp." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Velg et kvadratisk utsnitt av bildet som din avatar." #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1625,7 +1631,7 @@ msgstr "Bakgrunn" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1666,7 +1672,8 @@ msgstr "Nei" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Ikke blokker denne brukeren" #. TRANS: Button label on the user block form. @@ -1683,9 +1690,9 @@ msgid "Yes" msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Blokker denne brukeren" #. TRANS: Server error displayed when blocking a user fails. @@ -1848,7 +1855,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Bekreft" @@ -1878,13 +1885,13 @@ msgstr "Program ikke funnet." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Du er ikke eieren av dette programmet." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 #, fuzzy msgid "There was a problem with your session token." @@ -1909,12 +1916,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Ikke slett dette programmet" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Slett dette programmet" #. TRANS: Client error when trying to delete group while not logged in. @@ -1968,12 +1977,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "Ikke slett denne gruppen" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "Slett denne gruppen" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2016,12 +2027,14 @@ msgstr "Er du sikker på at du vil slette denne notisen?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Ikke slett denne notisen" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Slett denne notisen" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2058,13 +2071,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "Ikke slett denne gruppen" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Slett denne brukeren" #. TRANS: Message used as title for design settings for the site. @@ -2229,21 +2242,21 @@ msgid "Use defaults" msgstr "Bruk standard" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Gjenopprett standardutseende" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Tilbakestill til standardverdier" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Lagre utseende" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2275,7 +2288,7 @@ msgid "You must be logged in to edit an application." msgstr "Du må være innlogget for å redigere et program." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Inget slikt program." @@ -2554,7 +2567,7 @@ msgid "Cannot normalize that email address." msgstr "Klarer ikke normalisere epostadressen" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ugyldig e-postadresse." @@ -2630,19 +2643,22 @@ msgstr "Ingen innkommende e-postadresse." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Kunne ikke oppdatere brukeroppføring." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Inkommende e-postadresse fjernet." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Ny innkommende e-postadresse lagt til." @@ -2653,7 +2669,8 @@ msgstr "Denne notisen er allerede en favoritt." #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Fjern favoritt" #. TRANS: Page title for first page of favorited notices. @@ -2894,12 +2911,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Ikke blokker denne brukeren fra denne gruppa" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Blokker denne brukeren fra denne gruppen" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3225,7 +3244,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Publiser en MicroID for min Jabber/Gtalk-adresse." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Innstillinger lagret." @@ -3634,40 +3654,40 @@ msgstr "Lagre" msgid "Save license settings" msgstr "Lagre lisensinnstillinger" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Allerede innlogget." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Feil brukernavn eller passord." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "Feil ved innstilling av bruker. Du er mest sannsynlig kke autorisert." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Logg inn" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Logg inn på nettstedet" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Husk meg" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Logg inn automatisk i framtiden. Ikke for datamaskiner du deler med andre!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Mistet eller glemt passordet?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3675,11 +3695,11 @@ msgstr "" "Av sikkerhetsmessige årsaker, skriv inn brukernavn og passord på nytt før du " "endrer innstillingene dine." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Logg inn med brukernavn og passord." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3891,30 +3911,30 @@ msgid "You have not registered any applications yet." msgstr "Du har ikke registrert noen program ennå." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Tilkoblede program" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "Følgende tilkoblinger finnes for kontoen din." #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Du er ikke bruker av dette programmet." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "Kunne ikke fjerne tilgang for applikasjonen: %s." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3923,20 +3943,30 @@ msgstr "" "Du har fjernet tilgangen for %1$s og tilgangstegnet som begynner med %2$s." #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "Du har ikke tillatt noen programmer å bruke din konto." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "Bruker ikke funnet." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "Foreldrenotis ikke funnet." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Notisen har ingen profil." @@ -3946,6 +3976,16 @@ msgstr "Notisen har ingen profil." msgid "%1$s's status on %2$s" msgstr "%1$s sin status på %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Fant ikke mottakeren." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4036,17 +4076,21 @@ msgstr "Ugyldig symbol." msgid "Login token expired." msgstr "Logg inn på nettstedet" -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Utboks for %1$s - side %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Utboks for %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "Dette er utboksen din som viser alle private meldinger du har sendt." @@ -4072,40 +4116,45 @@ msgstr "Gammelt passord" msgid "New password" msgstr "Nytt passord" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 eller flere tegn" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "Samme som passord ovenfor" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Endre" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Passord må være minst 6 tegn." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Passordene var ikke like." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Feil gammelt passord" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Feil ved lagring av bruker; ugyldig." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Klarer ikke å lagre nytt passord." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Passordet ble lagret" @@ -4432,14 +4481,14 @@ msgid "Profile information" msgstr "Profilinformasjon" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1‒64 små bokstaver eller tall, ingen tegnsetting eller mellomrom." #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4447,20 +4496,20 @@ msgstr "Fullt navn" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Hjemmesiden" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site." msgstr "Adressen til din hjemmeside, blogg eller profil på et annet nettsted." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4468,28 +4517,29 @@ msgstr[0] "Beskriv deg selv og dine interesser på %d tegn" msgstr[1] "Beskriv deg selv og dine interesser på %d tegn" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Beskriv degselv og dine interesser" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Om meg" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Plassering" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Hvor du er, for eksempel «By, fylke (eller region), land»" @@ -4508,8 +4558,10 @@ msgstr "Tagger" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Merkelapper for degselv (bokstaver, nummer, -, ., og _), adskilt med komma " "eller mellomrom" @@ -4521,7 +4573,8 @@ msgstr "Språk" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Foretrukket språk" #. TRANS: Dropdownlist label in form for profile settings. @@ -4536,15 +4589,16 @@ msgstr "Hvilken tidssone er du vanligvis i?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Abonner automatisk på de som abonnerer på meg (best for ikke-mennesker)" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4563,9 +4617,9 @@ msgstr "Språknavnet er for langt (maks 50 tegn)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Ugyldig merkelapp: «%s»" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4809,6 +4863,12 @@ msgstr "Gjenopprett passord" msgid "Password recovery requested" msgstr "Passordgjenoppretting forespurt" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Passordet ble lagret" + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4820,12 +4880,6 @@ msgstr "Ukjent handling" msgid "6 or more characters, and do not forget it!" msgstr "6 eller flere tegn. Og ikke glem det!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "Samme som passord ovenfor" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4878,14 +4932,8 @@ msgstr "Passordet må bestå av 6 eller flere tegn." msgid "Password and confirmation do not match." msgstr "Passord og bekreftelse samsvarer ikke." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Klarer ikke å lagre nytt passord." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Feil ved innstilling av bruker." @@ -4894,92 +4942,92 @@ msgstr "Feil ved innstilling av bruker." msgid "New password successfully saved. You are now logged in." msgstr "Nytt passord ble lagret. Du er nå logget inn." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Beklager, kun inviterte personer kan registrere seg." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Beklager, ugyldig invitasjonskode." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Registrering vellykket" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Registrer" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Registrering ikke tillatt." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Du kan ikke registrere deg om du ikke godtar lisensvilkårene." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "E-postadressen finnes allerede." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Ugyldig brukernavn eller passord." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "Med dette skjemaet kan du opprette en ny konto. Du kan så poste notiser og " "knytte deg til venner og kollegaer. " -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 eller flere tegn" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-post" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "Kun brukt for oppdateringer, kunngjøringer og passordgjenoppretting" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Lengre navn, helst ditt \"ekte\" navn" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL til din hjemmeside, blogg, eller profil på annen nettside." +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Hvor du er, for eksempel «By, fylke (eller region), land»" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Alle rettigheter reservert." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4988,7 +5036,7 @@ msgstr "" "Mine tekster og filer er tilgjengelig under %s med unntak av disse private " "dataene: passord, e-postadresse, direktemeldingsadresse og telefonnummer." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5021,7 +5069,7 @@ msgstr "" "\n" "Takk for at du registrerte deg og vi håper du kommer til å like tjenesten." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5054,7 +5102,8 @@ msgid "User nickname" msgstr "Brukerens kallenavn" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Kallenavn på brukeren du vil følge" #: actions/remotesubscribe.php:132 @@ -5062,7 +5111,8 @@ msgid "Profile URL" msgstr "Profilnettadresse" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "" "Nettadresse til profilen din på en annen kompatibel mikrobloggingstjeneste" @@ -5073,7 +5123,8 @@ msgid "Subscribe" msgstr "Abonner" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "Ugyldig profilnettadresse (dårlig format)" #: actions/remotesubscribe.php:167 @@ -5271,7 +5322,7 @@ msgstr "Du kan ikke trekke tilbake brukerroller på dette nettstedet." msgid "User doesn't have this role." msgstr "Brukeren har ikke denne rollen." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5313,88 +5364,88 @@ msgstr "Slå på feilsøkingsutdata for økter." msgid "Save site settings" msgstr "Lagre nettstedsinnstillinger" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Du må være innlogget for å se et program." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Programprofil" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Ikon" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Navn" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisasjon" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Beskrivelse" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Statistikk" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "Opprettet av %1$s - %2$s standardtilgang - %3$d brukere" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Programhandlinger" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Tilbakestill nøkkel & hemmelighet" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Slett" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Programinformasjon" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Forbrukernøkkel" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Forbrukerhemmelighet" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 #, fuzzy msgid "Authorize URL" msgstr "Forfatter" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5402,7 +5453,7 @@ msgstr "" "Merk: Vi støtter HMAC-SHA1-signaturer. Vi støtter ikke metoden for " "klartekstsignatur." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" "Er du sikker på at du vil tilbakestille din forbrukernøkkel og -hemmelighet?" @@ -5495,16 +5546,18 @@ msgid "Group profile" msgstr "Gruppeprofil" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "Nettadresse" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Merk" @@ -5650,7 +5703,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s, side %2$d" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5896,7 +5949,8 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Lagre nettstedsnotis" #. TRANS: Title for SMS settings. @@ -5954,7 +6008,8 @@ msgstr "Telefonnummer for SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Telefonnummer, ingen tegnsetting eller mellomrom, med retningsnummer" #. TRANS: Form legend for SMS preferences form. @@ -6290,8 +6345,9 @@ msgstr "Merk %s" msgid "User profile" msgstr "Brukerprofil" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Foto" @@ -6309,6 +6365,11 @@ msgstr "" "Merkelapper for degselv (bokstaver, nummer, -, ., og _), adskilt med komma " "eller mellomrom" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Ugyldig merkelapp: «%s»" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6348,7 +6409,7 @@ msgstr "Ingen profil med den ID'en." msgid "Unsubscribed" msgstr "Abonner" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, fuzzy, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6380,7 +6441,7 @@ msgstr "Ugyldig velkomsttekst. Maks lengde er 255 tegn." #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, fuzzy, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Ugyldig standardabonnement: '%1$s' er ikke bruker." #. TRANS: Link description in user account settings menu. @@ -6441,104 +6502,143 @@ msgstr "Hvorvidt brukere tillates å invitere nye brukere." #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" -msgstr "" +#, fuzzy +msgid "Save user settings." +msgstr "Lagre nettstedsinnstillinger" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Autoriser abonnementet" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Lisens" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Godta" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Abonner på denne brukeren" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Avvis" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Avvis dette abonnementet" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 #, fuzzy msgid "Subscription authorized" msgstr "Abonnement" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 #, fuzzy msgid "Subscription rejected" msgstr "Abonnement" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " "subscription." msgstr "" -#: actions/userauthorization.php:303 +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 #, php-format -msgid "Listener URI ‘%s’ not found here." +msgid "Listener URI \"%s\" not found here." msgstr "" -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." +msgstr "Kilde-URL er for lang." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." +msgstr "Profil-URL ‘%s’ er for en lokal bruker." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "Profil-URL ‘%s’ er for en lokal bruker." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "Notislisensen ‘%1$s’ er ikke kompatibel med nettstedslisensen ‘%2$s’." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "Avatar-URL ‘%s’ er ikke gyldig." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Kan ikke lese avatar-URL ‘%s’" -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Feil bildetype for avatar-URL ‘%s’." #. TRANS: Page title for profile design page. @@ -7745,6 +7845,11 @@ msgstr "Endring av passord er ikke tillatt" msgid "Block" msgstr "Blokkér" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Blokker denne brukeren" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8168,6 +8273,11 @@ msgstr "Tilkoblede program" msgid "Database error" msgstr "Databasefeil" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Slett denne brukeren" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8205,6 +8315,21 @@ msgstr "Endre farger" msgid "Use defaults" msgstr "Bruk standard" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Gjenopprett standardutseende" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Tilbakestill til standardverdier" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Lagre utseende" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8318,9 +8443,8 @@ msgid "Grant this user the \"%s\" role" msgstr "Innvilg denne brukeren rollen «%s»" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1‒64 små bokstaver eller tall, ingen tegnsetting eller mellomrom." +msgstr "1-64 små bokstaver eller tall, ingen punktum eller mellomrom" #: lib/groupeditform.php:156 #, fuzzy @@ -9089,6 +9213,10 @@ msgstr "Svar på denne notisen" msgid "Reply" msgstr "Svar" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Slett denne notisen" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Notis repetert" @@ -9378,6 +9506,10 @@ msgstr "Inviter" msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter venner og kollegaer til å bli med deg på %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Abonner på denne brukeren" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9653,3 +9785,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6 eller flere tegn" + +#~ msgid "Same as password above" +#~ msgstr "Samme som passord ovenfor" + +#~ msgid "Can't save new password." +#~ msgstr "Klarer ikke å lagre nytt passord." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "URL til din hjemmeside, blogg, eller profil på annen nettside." diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 8883b62de7..51ff6ac80a 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:25+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -154,7 +154,7 @@ msgstr "Deze pagina bestaat niet." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -519,7 +519,8 @@ msgstr "De ontvanger is niet aangetroffen." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" "U kunt geen privéberichten sturen aan gebruikers die niet op uw " "vriendenlijst staan." @@ -607,7 +608,7 @@ msgstr "Het was niet mogelijk de doelgebruiker te vinden." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "" "De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam." @@ -618,7 +619,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Ongeldige gebruikersnaam!" @@ -631,7 +632,7 @@ msgstr "Ongeldige gebruikersnaam!" #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "De thuispagina is geen geldige URL." @@ -641,7 +642,7 @@ msgstr "De thuispagina is geen geldige URL." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "De volledige naam is te lang (maximaal 255 tekens)." @@ -669,7 +670,7 @@ msgstr[1] "De beschrijving is te lang (maximaal %d tekens)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "De locatie is te lang (maximaal 255 tekens)." @@ -824,15 +825,15 @@ msgstr "Het verzoektoken is al geautoriseerd." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -867,7 +868,7 @@ msgstr "" #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Het formulier is onverwacht ingezonden." @@ -918,19 +919,20 @@ msgstr "Gebruikersgegevens" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Gebruikersnaam" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Wachtwoord" @@ -1052,8 +1054,8 @@ msgstr "HTTP-methode wordt niet ondersteund." #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 -#, php-format -msgid "Unsupported format: %s" +#, fuzzy, php-format +msgid "Unsupported format: %s." msgstr "Niet-ondersteund formaat: %s" #. TRANS: Client error displayed requesting a deleted status. @@ -1232,25 +1234,26 @@ msgid "Atom post must be an Atom entry." msgstr "Het Atombericht moet een Atomopmaak hebben." #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "Het is alleen mogelijk om POST-activiteiten af te handelen." #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "Het is niet mogelijk om het activiteitobjecttype \"%s\" te verwerken." #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, php-format msgid "No content for notice %d." msgstr "Geen inhoud voor mededeling %d." #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1409,7 +1412,7 @@ msgid "Not a member." msgstr "Geen lid." #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 msgid "Cannot delete someone else's membership." msgstr "Het is niet mogelijk om een lidmaatschap van een ander te verwijderen." @@ -1516,9 +1519,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Gebruiker zonder bijbehorend profiel." @@ -1573,9 +1578,10 @@ msgstr "Uitsnijden" msgid "No file uploaded." msgstr "Er is geen bestand geüpload." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "" "Selecteer een vierkant in de afbeelding om deze als uw avatar in te stellen" @@ -1639,7 +1645,8 @@ msgstr "Reservekopie" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +#, fuzzy +msgid "Backup your account." msgstr "Uw gebruiker back-uppen" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1680,7 +1687,8 @@ msgstr "Nee" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Gebruiker niet blokkeren" #. TRANS: Button label on the user block form. @@ -1697,9 +1705,9 @@ msgid "Yes" msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Deze gebruiker blokkeren" #. TRANS: Server error displayed when blocking a user fails. @@ -1862,7 +1870,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Bevestigen" @@ -1893,13 +1901,13 @@ msgstr "De applicatie is niet gevonden." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "U bent niet de eigenaar van deze applicatie." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Er is een probleem met uw sessietoken." @@ -1923,12 +1931,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Deze applicatie niet verwijderen" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Deze applicatie verwijderen" #. TRANS: Client error when trying to delete group while not logged in. @@ -1983,12 +1993,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "Verwijder deze groep niet" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "Groep verwijderen" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2031,12 +2043,14 @@ msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Deze mededeling niet verwijderen" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Deze mededeling verwijderen" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2072,13 +2086,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 -msgid "Do not delete this user" +#, fuzzy +msgid "Do not delete this user." msgstr "Deze gebruiker niet verwijderen" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Gebruiker verwijderen" #. TRANS: Message used as title for design settings for the site. @@ -2242,21 +2257,21 @@ msgid "Use defaults" msgstr "Standaardinstellingen gebruiken" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Standaardontwerp toepassen" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Standaardinstellingen toepassen" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Ontwerp opslaan" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2288,7 +2303,7 @@ msgid "You must be logged in to edit an application." msgstr "U moet aangemeld zijn om een applicatie te kunnen bewerken." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "De applicatie bestaat niet." @@ -2570,7 +2585,7 @@ msgid "Cannot normalize that email address." msgstr "Kan het e-mailadres niet normaliseren." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Geen geldig e-mailadres." @@ -2645,18 +2660,21 @@ msgstr "Geen binnenkomend e-mailadres" #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 msgid "Could not update user record." msgstr "Kan de gebruikersgegevens niet vernieuwen." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Het e-mailadres voor inkomende mail is verwijderd." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Het nieuwe binnenkomende e-mailadres is toegevoegd." @@ -2667,7 +2685,8 @@ msgstr "Deze mededeling staat al in uw favorietenlijst." #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Van favorietenlijst verwijderen" #. TRANS: Page title for first page of favorited notices. @@ -2913,12 +2932,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Deze gebruiker niet de toegang tot deze groep ontzeggen" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Deze gebruiker de toegang tot deze groep ontzeggen" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3249,7 +3270,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Een MicroID voor mijn Jabber- of Google Talk-adres publiceren." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Uw voorkeuren zijn opgeslagen." @@ -3661,41 +3683,41 @@ msgstr "Opslaan" msgid "Save license settings" msgstr "Licentieinstellingen opslaan" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "U bent al aangemeld." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "De gebruikersnaam of wachtwoord is onjuist." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "" "Er is een fout opgetreden bij het maken van de instellingen. U hebt " "waarschijnlijk niet de juiste rechten." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Aanmelden" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Aanmelden" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Aanmeldgegevens onthouden" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "Voortaan automatisch aanmelden. Niet gebruiken op gedeelde computers!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Wachtwoord kwijt of vergeten?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3703,11 +3725,11 @@ msgstr "" "Om veiligheidsredenen moet u uw gebruikersnaam en wachtwoord nogmaals " "invoeren alvorens u uw instellingen kunt wijzigen." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Aanmelden met uw gebruikersnaam en wachtwoord." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3917,24 +3939,24 @@ msgid "You have not registered any applications yet." msgstr "U hebt nog geen applicaties geregistreerd." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Verbonden applicaties" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" "U hebt de onderstaande applicaties toegang gegeven tot uw gebruikersgegevens." #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "U bent geen gebruiker van die applicatie." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, php-format msgid "Unable to revoke access for application: %s." msgstr "" @@ -3943,7 +3965,7 @@ msgstr "" #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3953,7 +3975,7 @@ msgstr "" "ingetrokken." #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "" "U hebt geen enkele applicatie geautoriseerd voor toegang tot uw " @@ -3962,7 +3984,7 @@ msgstr "" #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " @@ -3971,6 +3993,16 @@ msgstr "" "Bet u ontwikkelaar? [Registreer dan een OAuthprogramma](%s) om te gebruiken " "met deze Statusnetsite." +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "De pagina is niet aangetroffen." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "De bovenliggende mededeling is niet aangetroffen." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Mededeling heeft geen profiel." @@ -3980,6 +4012,16 @@ msgstr "Mededeling heeft geen profiel." msgid "%1$s's status on %2$s" msgstr "Status van %1$s op %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "De ontvanger is niet aangetroffen." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4069,17 +4111,21 @@ msgstr "Het opgegeven token is ongeldig." msgid "Login token expired." msgstr "Het aanmeldtoken is verlopen." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Postvak UIT voor %1$s - pagina %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Postvak UIT voor %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "Dit is uw Postvak UIT waarin de door u verzonden privéberichten staan." @@ -4105,40 +4151,42 @@ msgstr "Huidige wachtwoord" msgid "New password" msgstr "Nieuw wachtwoord" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +msgid "6 or more characters." msgstr "Zes of meer tekens" -#: actions/passwordsettings.php:113 -msgid "Same as password above" -msgstr "Gelijk aan het wachtwoord hierboven" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +msgid "Same as password above." +msgstr "Gelijk aan het wachtwoord hierboven." #: actions/passwordsettings.php:117 msgid "Change" msgstr "Wijzigen" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Het wachtwoord moet zes of meer tekens bevatten." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "De wachtwoorden komen niet overeen." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Het oude wachtwoord is onjuist" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Fout bij opslaan gebruiker; ongeldig." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +msgid "Cannot save new password." msgstr "Het was niet mogelijk het nieuwe wachtwoord op te slaan." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Het wachtwoord is opgeslagen." @@ -4466,14 +4514,14 @@ msgid "Profile information" msgstr "Profielinformatie" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties." #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4481,20 +4529,20 @@ msgstr "Volledige naam" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Startpagina" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site." msgstr "De URL van uw thuispagina, blog of profiel bij een andere website." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4502,28 +4550,29 @@ msgstr[0] "Beschrijf uzelf en uw interesses in %d teken" msgstr[1] "Beschrijf uzelf en uw interesses in %d tekens" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Beschrijf uzelf en uw interesses" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Beschrijving" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Locatie" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"" @@ -4542,8 +4591,10 @@ msgstr "Labels" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Eigen labels (letter, getallen, -, ., en _). Gescheiden door komma's of " "spaties" @@ -4555,7 +4606,8 @@ msgstr "Taal" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Voorkeurstaal" #. TRANS: Dropdownlist label in form for profile settings. @@ -4570,8 +4622,9 @@ msgstr "In welke tijdzone verblijft u meestal?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Automatisch abonneren bij abonnement op mij (beste voor automatische " "processen)" @@ -4579,7 +4632,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4598,9 +4651,9 @@ msgstr "De taal is te lang (maximaal 50 tekens)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Ongeldig label: '%s'" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4846,6 +4899,12 @@ msgstr "Wachtwoord herstellen" msgid "Password recovery requested" msgstr "Wachtwoordherstel aangevraagd" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Het wachtwoord is opgeslagen." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4856,11 +4915,6 @@ msgstr "Onbekende handeling" msgid "6 or more characters, and do not forget it!" msgstr "Zes of meer tekens, en vergeet uw wachtwoord niet!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -msgid "Same as password above." -msgstr "Gelijk aan het wachtwoord hierboven." - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4914,13 +4968,8 @@ msgstr "Het wachtwoord moet uit zes of meer tekens bestaan." msgid "Password and confirmation do not match." msgstr "Het wachtwoord en de bevestiging komen niet overeen." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -msgid "Cannot save new password." -msgstr "Het was niet mogelijk het nieuwe wachtwoord op te slaan." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Er is een fout opgetreden tijdens het instellen van de gebruiker." @@ -4929,92 +4978,93 @@ msgstr "Er is een fout opgetreden tijdens het instellen van de gebruiker." msgid "New password successfully saved. You are now logged in." msgstr "Het nieuwe wachtwoord is opgeslagen. U bent nu aangemeld." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "U kunt zich alleen registreren als u wordt uitgenodigd." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Sorry. De uitnodigingscode is ongeldig." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "De registratie is voltooid" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Registreren" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Registratie is niet toegestaan." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "U kunt zich niet registreren als u niet met de licentie akkoord gaat." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Het e-mailadres bestaat al." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Ongeldige gebruikersnaam of wachtwoord." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "Via dit formulier kunt u een nieuwe gebruiker aanmaken. Daarna kunt u " "mededelingen uitsturen en contact maken met vrienden en collega's. " -#: actions/register.php:437 -msgid "6 or more characters." -msgstr "Zes of meer tekens" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "Alleen gebruikt voor updates, aankondigingen en wachtwoordherstel" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Een langere naam, mogelijk uw echte naam" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "De URL van uw thuispagina, blog of profiel bij een andere website" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" "Ik begrijp dat inhoud en gegevens van %1$s persoonlijk en vertrouwelijk zijn." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "Voor mijn teksten en bestanden rust het auteursrecht bij %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "Ik ben de rechthebbende voor mijn teksten en bestanden." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Alle rechten voorbehouden." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5023,7 +5073,7 @@ msgstr "" "Mijn teksten en bestanden zijn beschikbaar onder %s, behalve de volgende " "privégegevens: wachtwoord, e-mailadres, IM-adres, telefoonnummer." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5057,7 +5107,7 @@ msgstr "" "Dank u wel voor het registreren en we hopen dat deze dienst u biedt wat u " "ervan verwacht." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5090,7 +5140,8 @@ msgid "User nickname" msgstr "Gebruikersnaam" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "De gebruikersnaam van de gebruiker die u wilt volgen" #: actions/remotesubscribe.php:132 @@ -5098,7 +5149,8 @@ msgid "Profile URL" msgstr "Profiel-URL" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "De URL van uw profiel bij een andere, compatibele microblogdienst" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5108,7 +5160,8 @@ msgid "Subscribe" msgstr "Abonneren" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "Ongeldige profiel-URL (foutieve opmaak)" #: actions/remotesubscribe.php:167 @@ -5309,7 +5362,7 @@ msgstr "U kunt geen gebruikersrollen intrekken op deze website." msgid "User doesn't have this role." msgstr "Deze gebruiker heeft deze rol niet." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5351,87 +5404,87 @@ msgstr "Debuguitvoer voor sessies inschakelen." msgid "Save site settings" msgstr "Websiteinstellingen opslaan" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "U moet aangemeld zijn om een applicatie te kunnen bekijken." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Applicatieprofiel" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Icoon" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Naam" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisatie" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Beschrijving" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Statistieken" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "Aangemaakt door %1$s - standaardtoegang \"%2$s\" - %3$d gebruikers" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Applicatiehandelingen" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Sleutel en wachtwoord op nieuw instellen" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Verwijderen" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Applicatieinformatie" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Gebruikerssleutel" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Gebruikersgeheim" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "URL voor verzoektoken" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "URL voor toegangstoken" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "Autorisatie-URL" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5439,7 +5492,7 @@ msgstr "" "Opmerking: HMAC-SHA1 ondertekening wordt ondersteund. Ondertekening in " "platte tekst is niet mogelijk." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" "Weet u zeker dat u uw gebruikerssleutel en geheime code wilt verwijderen?" @@ -5534,16 +5587,18 @@ msgid "Group profile" msgstr "Groepsprofiel" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Opmerking" @@ -5689,7 +5744,7 @@ msgid "%1$s tagged %2$s" msgstr "%2$s gelabeld door %1$s" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5945,7 +6000,8 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Websitebrede mededeling opslaan" #. TRANS: Title for SMS settings. @@ -6003,7 +6059,8 @@ msgstr "SMS-nummer" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Telefoonnummer zonder spaties of leestekens, met netnummer" #. TRANS: Form legend for SMS preferences form. @@ -6342,8 +6399,9 @@ msgstr "Label %s" msgid "User profile" msgstr "Gebruikersprofiel" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Foto" @@ -6360,6 +6418,11 @@ msgstr "" "Labels voor deze gebruiker (letters, cijfers, -, ., en _). Gebruik komma's " "of spaties als scheidingsteken" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Ongeldig label: '%s'" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6397,7 +6460,7 @@ msgstr "Het profiel-ID was niet aanwezig in het verzoek." msgid "Unsubscribed" msgstr "Het abonnement is opgezegd" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6429,8 +6492,8 @@ msgstr "Ongeldige welkomsttekst. De maximale lengte is 255 tekens." #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 -#, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +#, fuzzy, php-format +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Ongeldig standaardabonnement: \"%1$s\" is geen gebruiker." #. TRANS: Link description in user account settings menu. @@ -6490,56 +6553,72 @@ msgstr "Of gebruikers nieuwe gebruikers kunnen uitnodigen." #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "Gebruikersinstellingen opslaan" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Abonneren" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Controleer alstublieft deze details om er zeker van te zijn dat u zich wilt " "abonneren op de mededelingen van deze gebruiker. Als u zojuist niet hebt " "aangegeven dat u zich op de mededelingen van een gebruiker wilt abonneren, " "klik dan op \"Afwijzen\"." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Licentie" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Aanvaarden" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Abonneren op deze gebruiker" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Afwijzen" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Dit abonnement weigeren" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Geen autorisatieverzoek!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Het abonnement is geautoriseerd" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6549,11 +6628,12 @@ msgstr "" "Controleer de instructies van de site voor informatie over het volledig " "afwijzen van een abonnement. Uw abonnementstoken is:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Het abonnement is afgewezen" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6563,39 +6643,64 @@ msgstr "" "Controleer de instructies van de site voor informatie over het volledig " "afwijzen van een abonnement." -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "De abonnee-URI \"%s\" is hier niet te vinden." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "De URI \"%s\" voor de stream is te lang." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "de URI \"%s\" voor de stream is een lokale gebruiker." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "De profiel-URL ‘%s’ is van een lokale gebruiker." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"De licentie \"%1$s\" voor de stream die u wilt volgen is niet compatibel met " +"de sitelicentie \"%2$s\"." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "De avatar-URL \"%s\" is niet geldig." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Het was niet mogelijk de avatar-URL \"%s\" te lezen." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Er staat een verkeerd afbeeldingsttype op de avatar-URL \"%s\"." #. TRANS: Page title for profile design page. @@ -7826,6 +7931,11 @@ msgstr "Wachtwoord wijzigen is niet toegestaan" msgid "Block" msgstr "Blokkeren" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Deze gebruiker blokkeren" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8289,6 +8399,11 @@ msgstr "Geautoriseerde verbonden applicaties" msgid "Database error" msgstr "Databasefout" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Gebruiker verwijderen" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8325,6 +8440,21 @@ msgstr "Kleuren wijzigen" msgid "Use defaults" msgstr "Standaardinstellingen gebruiken" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Standaardontwerp toepassen" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Standaardinstellingen toepassen" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Ontwerp opslaan" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8429,7 +8559,6 @@ msgid "Grant this user the \"%s\" role" msgstr "Deze gebruiker de rol \"%s\" geven" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties." @@ -8442,11 +8571,11 @@ msgid "Describe the group or topic" msgstr "Beschrijf de groep of het onderwerp" #: lib/groupeditform.php:163 -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d character or less" msgid_plural "Describe the group or topic in %d characters or less" -msgstr[0] "Beschrijf de groep in %d teken of minder." -msgstr[1] "Beschrijf de groep in %d tekens of minder." +msgstr[0] "Beschrijf de group in %d teken of minder" +msgstr[1] "Beschrijf de group in %d tekens of minder" #: lib/groupeditform.php:175 msgid "" @@ -9097,9 +9226,8 @@ msgid "Send" msgstr "Verzenden" #: lib/messagelist.php:77 -#, fuzzy msgid "Messages" -msgstr "Bericht" +msgstr "Berichten" #: lib/messagelistitem.php:123 lib/noticelist.php:522 msgid "from" @@ -9207,6 +9335,10 @@ msgstr "Op deze mededeling antwoorden" msgid "Reply" msgstr "Antwoorden" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Deze mededeling verwijderen" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Mededeling herhaald" @@ -9482,6 +9614,10 @@ msgstr "Uitnodigen" msgid "Invite friends and colleagues to join you on %s" msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Abonneren op deze gebruiker" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9765,3 +9901,15 @@ msgstr "Ongeldige XML. De XRD-root mist." #, php-format msgid "Getting backup from file '%s'." msgstr "De back-up wordt uit het bestand \"%s\" geladen." + +#~ msgid "6 or more characters" +#~ msgstr "Zes of meer tekens" + +#~ msgid "Same as password above" +#~ msgstr "Gelijk aan het wachtwoord hierboven" + +#~ msgid "Can't save new password." +#~ msgstr "Het was niet mogelijk het nieuwe wachtwoord op te slaan." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "De URL van uw thuispagina, blog of profiel bij een andere website" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 5049240890..e056304c47 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:27+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:35+0000\n" "Language-Team: Norwegian Nynorsk \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\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: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -161,7 +161,7 @@ msgstr "Dette emneord finst ikkje." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -515,7 +515,8 @@ msgstr "Kunne ikkje finne mottakar." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "Kan ikkje senda direktemeldingar til brukarar som du ikkje er ven med." #. TRANS: Client error displayed trying to direct message self (403). @@ -605,7 +606,7 @@ msgstr "Kan ikkje oppdatera brukar." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." @@ -615,7 +616,7 @@ msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Ikkje eit gyldig brukarnamn." @@ -628,7 +629,7 @@ msgstr "Ikkje eit gyldig brukarnamn." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "Heimesida er ikkje ei gyldig internettadresse." @@ -638,7 +639,7 @@ msgstr "Heimesida er ikkje ei gyldig internettadresse." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)." @@ -667,7 +668,7 @@ msgstr[1] "Plassering er for lang (maksimalt 255 teikn)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Plassering er for lang (maksimalt 255 teikn)." @@ -829,15 +830,15 @@ msgstr "Du tingar ikkje oppdateringar til den profilen." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "Der var eit problem med sesjonen din. Vennlegst prøv på nytt." @@ -870,7 +871,7 @@ msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s" #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Uventa skjemasending." @@ -916,19 +917,20 @@ msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Kallenamn" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Passord" @@ -1053,7 +1055,7 @@ msgstr "Fann ikkje API-metode." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "Støttar ikkje bileteformatet." #. TRANS: Client error displayed requesting a deleted status. @@ -1233,25 +1235,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Søk i innhaldet av notisar" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." @@ -1419,7 +1422,7 @@ msgid "Not a member." msgstr "Alle medlemmar" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Kunne ikkje lagra abonnement." @@ -1524,9 +1527,11 @@ msgstr "Du kan lasta opp ein logo for gruppa." #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Brukaren har inga profil." @@ -1585,9 +1590,10 @@ msgstr "Skaler" msgid "No file uploaded." msgstr "Ingen vald profil." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Velg eit utvalg av bildet som vil blir din avatar." #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1647,7 +1653,7 @@ msgstr "" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1686,7 +1692,7 @@ msgstr "Merknad" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 #, fuzzy -msgid "Do not block this user" +msgid "Do not block this user." msgstr "Lås opp brukaren" #. TRANS: Button label on the user block form. @@ -1704,9 +1710,9 @@ msgid "Yes" msgstr "Jau" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Blokkér denne brukaren" #. TRANS: Server error displayed when blocking a user fails. @@ -1874,7 +1880,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Godta" @@ -1904,14 +1910,14 @@ msgstr "Fann ikkje stadfestingskode." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 #, fuzzy msgid "You are not the owner of this application." msgstr "Du er ikkje medlem av den gruppa." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Det var eit problem med sesjons billetten din." @@ -1934,13 +1940,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 #, fuzzy -msgid "Do not delete this application" +msgid "Do not delete this application." msgstr "Kan ikkje sletta notisen." #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 #, fuzzy -msgid "Delete this application" +msgid "Delete this application." msgstr "Slett denne notisen" #. TRANS: Client error when trying to delete group while not logged in. @@ -1995,12 +2001,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "Ikkje slett denne gruppa" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "Slett denne gruppa" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2045,12 +2053,13 @@ msgstr "Sikker på at du vil sletta notisen?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 #, fuzzy -msgid "Do not delete this notice" +msgid "Do not delete this notice." msgstr "Kan ikkje sletta notisen." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Slett denne notisen" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2088,14 +2097,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "Ikkje slett denne gruppa" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 +#: actions/deleteuser.php:165 #, fuzzy -msgid "Delete this user" +msgid "Delete this user." msgstr "Slett denne notisen" #. TRANS: Message used as title for design settings for the site. @@ -2266,22 +2274,21 @@ msgid "Use defaults" msgstr "" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" -msgstr "" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." +msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +msgid "Reset back to default." msgstr "" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" -msgstr "" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." +msgstr "Profilinnstillingar" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. #: actions/disfavor.php:83 @@ -2313,7 +2320,7 @@ msgid "You must be logged in to edit an application." msgstr "Du må være logga inn for å lage ei gruppe." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 #, fuzzy msgid "No such application." msgstr "Denne notisen finst ikkje." @@ -2606,7 +2613,7 @@ msgid "Cannot normalize that email address." msgstr "Klarar ikkje normalisera epostadressa" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ikkje ei gyldig epostadresse." @@ -2683,19 +2690,22 @@ msgstr "Ingen innkomande epostadresse." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Kan ikkje oppdatera brukarinformajon." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Fjerna innkomande epostadresse." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "La til ny innkomande epostadresse." @@ -2706,7 +2716,8 @@ msgstr "Denne notisen er alt ein favoritt!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Fjern favoritt" #. TRANS: Page title for first page of favorited notices. @@ -2952,13 +2963,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 #, fuzzy -msgid "Do not block this user from this group" +msgid "Do not block this user from this group." msgstr "Ei liste over brukarane i denne gruppa." #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 #, fuzzy -msgid "Block this user from this group" +msgid "Block this user from this group." msgstr "Ei liste over brukarane i denne gruppa." #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3279,7 +3290,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Publiser ein MicroID for Jabber/GTalk addressene mine" #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Lagra brukarval." @@ -3693,40 +3705,40 @@ msgstr "Lagra" msgid "Save license settings" msgstr "" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Allereie logga inn." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Feil brukarnamn eller passord." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 #, fuzzy msgid "Error setting user. You are probably not authorized." msgstr "Ikkje autorisert." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Logg inn" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Logg inn " -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Hugs meg" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "Logg inn automatisk i framtidi (ikkje for delte maskiner)." -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Mista eller gløymd passord?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3734,12 +3746,12 @@ msgstr "" "Skriv inn brukarnam og passord før du endrar innstillingar (av " "tryggleiksomsyn)." -#: actions/login.php:292 +#: actions/login.php:281 #, fuzzy msgid "Login with your username and password." msgstr "Log inn med brukarnamn og passord." -#: actions/login.php:295 +#: actions/login.php:284 #, fuzzy, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3956,31 +3968,31 @@ msgid "You have not registered any applications yet." msgstr "" #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 #, fuzzy msgid "You are not a user of that application." msgstr "Du er ikkje medlem av den gruppa." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "Bruk dette skjemaet for å redigere gruppa" #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3988,20 +4000,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "" #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "Fann ikkje API-metode." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "Fann ikkje API-metode." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Brukaren har inga profil." @@ -4011,6 +4033,16 @@ msgstr "Brukaren har inga profil." msgid "%1$s's status on %2$s" msgstr "%1$s sin status på %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Kunne ikkje finne mottakar." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, fuzzy, php-format @@ -4106,17 +4138,21 @@ msgstr "Ugyldig notisinnhald" msgid "Login token expired." msgstr "Logg inn " -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, fuzzy, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Utboks for %s" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Utboks for %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "Dette er din utboks som syner alle private meldingar du har sendt." @@ -4142,40 +4178,45 @@ msgstr "Gamalt passord" msgid "New password" msgstr "Nytt passord" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 eller fleire teikn" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "Samme passord som over" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Endra" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Passord må være minst 6 teikn." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Passorda var ikkje like." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Det gamle passordet stemmer ikkje" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Feil ved lagring av brukar; fungerer ikkje." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Klarar ikkje lagra nytt passord." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Lagra passord." @@ -4519,7 +4560,7 @@ msgid "Profile information" msgstr "Profil informasjon" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" @@ -4528,7 +4569,7 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4536,13 +4577,13 @@ msgstr "Fullt namn" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Heimeside" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "URL til heimesida di, bloggen din, eller ein profil på ei anna side." @@ -4550,7 +4591,7 @@ msgstr "URL til heimesida di, bloggen din, eller ein profil på ei anna side." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4558,29 +4599,30 @@ msgstr[0] "Skriv om deg og interessene dine med 140 teikn" msgstr[1] "Skriv om deg og interessene dine med 140 teikn" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 #, fuzzy msgid "Describe yourself and your interests" msgstr "Skildra deg sjølv og din" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Om meg" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Plassering" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Kvar er du, t.d. «By, Fylke (eller Region), Land»" @@ -4599,8 +4641,10 @@ msgstr "Merkelappar" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "merkelappar for deg sjølv ( bokstavar, nummer, -, ., og _ ), komma eller " "mellomroms separert." @@ -4612,7 +4656,8 @@ msgstr "Språk" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Foretrukke språk" #. TRANS: Dropdownlist label in form for profile settings. @@ -4627,15 +4672,16 @@ msgstr "Kva tidssone er du vanlegvis i?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Automatisk ting notisane til dei som tingar mine (best for ikkje-menneskje)" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4655,9 +4701,9 @@ msgstr "Språk er for langt (maksimalt 50 teikn)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Ugyldig merkelapp: %s" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4896,6 +4942,12 @@ msgstr "Hent fram passord" msgid "Password recovery requested" msgstr "Passord opphenting etterspurt" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Lagra passord." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4907,12 +4959,6 @@ msgstr "Uventa handling." msgid "6 or more characters, and do not forget it!" msgstr "6 eller fleire teikn, og ikkje gløym dei." -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "Samme passord som over" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4965,14 +5011,8 @@ msgstr "Passord må vera 6 tekn eller meir." msgid "Password and confirmation do not match." msgstr "Passord og stadfesting stemmer ikkje." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Klarar ikkje lagra nytt passord." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Feil ved å setja brukar." @@ -4981,92 +5021,91 @@ msgstr "Feil ved å setja brukar." msgid "New password successfully saved. You are now logged in." msgstr "Lagra det nye passordet. Du er logga inn." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Beklage, men kun inviterte kan registrere seg." -#: actions/register.php:99 +#: actions/register.php:94 #, fuzzy msgid "Sorry, invalid invitation code." msgstr "Feil med stadfestingskode." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Registreringa gikk bra" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Registrér" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Registrering ikkje tillatt." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Epostadressa finst allereie." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Ugyldig brukarnamn eller passord." -#: actions/register.php:351 +#: actions/register.php:340 msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 eller fleire teikn" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Epost" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "" "Blir berre brukt for uppdateringar, viktige meldingar og for gløymde passord" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Lengre namn, fortrinnsvis ditt «ekte» namn" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL til heimesida di, bloggen din, eller ein profil på ei anna side." +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Kvar er du, t.d. «By, Fylke (eller Region), Land»" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, fuzzy, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5075,7 +5114,7 @@ msgstr "" " unnateke privatdata: passord, epostadresse, ljonmeldingsadresse og " "telefonnummer." -#: actions/register.php:588 +#: actions/register.php:573 #, fuzzy, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5107,7 +5146,7 @@ msgstr "" "\n" "Takk for at du blei med, og vi håpar du vil lika tenesta!" -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5141,7 +5180,8 @@ msgid "User nickname" msgstr "Brukaren sitt kallenamn" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Kallenamnet til brukaren du vil fylgja" #: actions/remotesubscribe.php:132 @@ -5149,7 +5189,8 @@ msgid "Profile URL" msgstr "Profil-adresse" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "URL til profilsida di på ei anna kompatibel mikrobloggingteneste." #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5159,7 +5200,8 @@ msgid "Subscribe" msgstr "Ting" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "Ugyldig profil-nettadresse (feil format)" #: actions/remotesubscribe.php:167 @@ -5357,7 +5399,7 @@ msgstr "Du kan ikkje lengre legge inn notisar på denne sida." msgid "User doesn't have this role." msgstr "Kan ikkje finne brukar" -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "Statistikk" @@ -5402,97 +5444,97 @@ msgstr "" msgid "Save site settings" msgstr "Avatar-innstillingar" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 #, fuzzy msgid "You must be logged in to view an application." msgstr "Du må være innlogga for å melde deg ut av ei gruppe." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 #, fuzzy msgid "Application profile" msgstr "Notisen har ingen profil" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 #, fuzzy msgid "Name" msgstr "Kallenamn" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 #, fuzzy msgid "Organization" msgstr "Paginering" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Beskriving" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Statistikk" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Slett" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 #, fuzzy msgid "Are you sure you want to reset your consumer key and secret?" msgstr "Sikker på at du vil sletta notisen?" @@ -5578,16 +5620,18 @@ msgid "Group profile" msgstr "Gruppe profil" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Merknad" @@ -5727,7 +5771,7 @@ msgid "%1$s tagged %2$s" msgstr "Grupper, side %d" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5972,7 +6016,7 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 #, fuzzy -msgid "Save site notice" +msgid "Save site notice." msgstr "Statusmelding" #. TRANS: Title for SMS settings. @@ -6032,7 +6076,8 @@ msgstr "Ingen telefonnummer." #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Telefonnummer, kun tall, med landskode" #. TRANS: Form legend for SMS preferences form. @@ -6363,8 +6408,9 @@ msgstr "Merkelapp %s" msgid "User profile" msgstr "Brukarprofil" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Bilete" @@ -6381,6 +6427,11 @@ msgstr "" "Emneord for denne brukaren (bokstavar, tal, -, ., og " "_, separert med komma eller mellomrom" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Ugyldig merkelapp: %s" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6419,7 +6470,7 @@ msgstr "Fann ingen profil med den IDen." msgid "Unsubscribed" msgstr "Fjerna tinging" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6451,7 +6502,7 @@ msgstr "" #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" #. TRANS: Link description in user account settings menu. @@ -6518,57 +6569,71 @@ msgstr "" #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" -msgstr "" +#, fuzzy +msgid "Save user settings." +msgstr "Avatar-innstillingar" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Autoriser tinging" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne " "brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 #, fuzzy msgid "License" msgstr "lisens." -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Godta" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Lagre tinging for brukar: %s" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Avslå" -#: actions/userauthorization.php:220 +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 #, fuzzy -msgid "Reject this subscription" +msgid "Reject this subscription." msgstr "%s tingarar" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Ingen autoriserings-spørjing!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Tinging autorisert" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -6579,11 +6644,12 @@ msgstr "" "Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal " "gjennomførast. Ditt tingings teikn er: " -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Tinging avvist" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -6593,39 +6659,62 @@ msgstr "" "Tingina har blitt avvist, men ingen henvisnings URL er tilgjengleg. Sjekk " "med sida sine instruksjonar for korleis ein skal avvise tinginga." -#: actions/userauthorization.php:303 +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 #, php-format -msgid "Listener URI ‘%s’ not found here." +msgid "Listener URI \"%s\" not found here." msgstr "" -#: actions/userauthorization.php:308 +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 #, php-format -msgid "Listenee URI ‘%s’ is too long." +msgid "Listenee URI \"%s\" is too long." msgstr "" -#: actions/userauthorization.php:314 +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 #, php-format -msgid "Listenee URI ‘%s’ is a local user." +msgid "Listenee URI \"%s\" is a local user." msgstr "" -#: actions/userauthorization.php:329 +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 #, php-format -msgid "Profile URL ‘%s’ is for a local user." +msgid "Profile URL \"%s\" is for a local user." msgstr "" -#: actions/userauthorization.php:345 +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 #, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" -#: actions/userauthorization.php:350 +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." +msgstr "Heimesida er ikkje ei gyldig internettadresse." + +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 #, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." +msgid "Cannot read avatar URL \"%s\"." msgstr "Kan ikkje lesa brukarbilete-URL «%s»" -#: actions/userauthorization.php:355 +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 #, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Feil biletetype for '%s'" #. TRANS: Page title for profile design page. @@ -7859,6 +7948,11 @@ msgstr "Endra passord" msgid "Block" msgstr "Blokkér" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Blokkér denne brukaren" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8281,6 +8375,12 @@ msgstr "" msgid "Database error" msgstr "" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +#, fuzzy +msgid "Delete this user" +msgstr "Slett denne notisen" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8316,6 +8416,21 @@ msgstr "Endra passordet ditt" msgid "Use defaults" msgstr "" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8425,7 +8540,6 @@ msgid "Grant this user the \"%s\" role" msgstr "" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom" @@ -9114,6 +9228,10 @@ msgstr "Svar på denne notisen" msgid "Reply" msgstr "Svar" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Slett denne notisen" + #: lib/noticelist.php:691 #, fuzzy msgid "Notice repeated" @@ -9407,6 +9525,10 @@ msgstr "Invitér" msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter vennar og kollega til å bli med deg på %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Lagre tinging for brukar: %s" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9683,3 +9805,16 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6 eller fleire teikn" + +#~ msgid "Same as password above" +#~ msgstr "Samme passord som over" + +#~ msgid "Can't save new password." +#~ msgstr "Klarar ikkje lagra nytt passord." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "" +#~ "URL til heimesida di, bloggen din, eller ein profil på ei anna side." diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index a50e613282..f857b5d746 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:32+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:38+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,11 +20,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -156,7 +156,7 @@ msgstr "Nie ma takiej strony." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -523,7 +523,8 @@ msgstr "Nie odnaleziono odbiorcy." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" "Nie można wysłać bezpośredniej wiadomości do użytkowników, którzy nie są " "twoimi przyjaciółmi." @@ -609,7 +610,7 @@ msgstr "Nie można odnaleźć użytkownika docelowego." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Pseudonim jest już używany. Spróbuj innego." @@ -619,7 +620,7 @@ msgstr "Pseudonim jest już używany. Spróbuj innego." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "To nie jest prawidłowy pseudonim." @@ -632,7 +633,7 @@ msgstr "To nie jest prawidłowy pseudonim." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "Strona domowa nie jest prawidłowym adresem URL." @@ -642,7 +643,7 @@ msgstr "Strona domowa nie jest prawidłowym adresem URL." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "Imię i nazwisko jest za długie (maksymalnie 255 znaków)." @@ -671,7 +672,7 @@ msgstr[2] "Opis jest za długi (maksymalnie %d znaków)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "Położenie jest za długie (maksymalnie 255 znaków)." @@ -827,15 +828,15 @@ msgstr "Token żądania został już upoważniony." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "Wystąpił problem z tokenem sesji. Spróbuj ponownie." @@ -866,7 +867,7 @@ msgstr "Błąd bazy danych podczas wprowadzania oauth_token_association." #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Nieoczekiwane wysłanie formularza." @@ -917,19 +918,20 @@ msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Pseudonim" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Hasło" @@ -1051,8 +1053,8 @@ msgstr "Metoda HTTP nie jest obsługiwana." #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 -#, php-format -msgid "Unsupported format: %s" +#, fuzzy, php-format +msgid "Unsupported format: %s." msgstr "Nieobsługiwany format: %s" #. TRANS: Client error displayed requesting a deleted status. @@ -1231,25 +1233,26 @@ msgid "Atom post must be an Atom entry." msgstr "Wpis Atom musi być wpisem Atom." #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "Można obsługiwać tylko działania POST." #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "Nie można obsłużyć typu obiektu działania \"%s\"." #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, php-format msgid "No content for notice %d." msgstr "Brak zawartości dla wpisu %d." #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1404,7 +1407,7 @@ msgid "Not a member." msgstr "Nie jest członkiem." #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 msgid "Cannot delete someone else's membership." msgstr "Nie można usunąć członkostwa innej osoby." @@ -1507,9 +1510,11 @@ msgstr "Można wysłać osobisty awatar. Maksymalny rozmiar pliku to %s." #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Użytkownik bez odpowiadającego profilu." @@ -1564,9 +1569,10 @@ msgstr "Przytnij" msgid "No file uploaded." msgstr "Nie wysłano pliku." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Wybierz kwadratowy obszar obrazu do awatara" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1631,7 +1637,8 @@ msgstr "Kopia zapasowa" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +#, fuzzy +msgid "Backup your account." msgstr "Wykonuje kopię zapasową konta" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1672,7 +1679,8 @@ msgstr "Nie" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Nie blokuj tego użytkownika" #. TRANS: Button label on the user block form. @@ -1689,9 +1697,9 @@ msgid "Yes" msgstr "Tak" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Zablokuj tego użytkownika" #. TRANS: Server error displayed when blocking a user fails. @@ -1853,7 +1861,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Potwierdź" @@ -1882,13 +1890,13 @@ msgstr "Nie odnaleziono aplikacji." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Nie jesteś właścicielem tej aplikacji." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Wystąpił problem z tokenem sesji." @@ -1911,12 +1919,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Nie usuwaj tej aplikacji" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Usuń tę aplikację" #. TRANS: Client error when trying to delete group while not logged in. @@ -1970,12 +1980,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "Nie usuwaj tej grupy" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "Usuń tę grupę" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2018,12 +2030,14 @@ msgstr "Jesteś pewien, że chcesz usunąć ten wpis?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Nie usuwaj tego wpisu" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Usuń ten wpis" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2058,13 +2072,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 -msgid "Do not delete this user" +#, fuzzy +msgid "Do not delete this user." msgstr "Nie usuwaj tego użytkownika" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Usuń tego użytkownika" #. TRANS: Message used as title for design settings for the site. @@ -2226,21 +2241,21 @@ msgid "Use defaults" msgstr "Użyj domyślne" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Przywróć domyślny wygląd" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Przywróć domyślne ustawienia" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Zapisz wygląd" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2272,7 +2287,7 @@ msgid "You must be logged in to edit an application." msgstr "Musisz być zalogowany, aby zmodyfikować aplikację." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Nie ma takiej aplikacji." @@ -2554,7 +2569,7 @@ msgid "Cannot normalize that email address." msgstr "Nie można znormalizować tego adresu e-mail" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "To nie jest prawidłowy adres e-mail." @@ -2629,18 +2644,21 @@ msgstr "Brak przychodzącego adresu e-mail." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 msgid "Could not update user record." msgstr "Nie można zaktualizować wpisu użytkownika." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Usunięto przychodzący adres e-mail." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Dodano nowy przychodzący adres e-mail." @@ -2651,7 +2669,8 @@ msgstr "Ten wpis jest już ulubiony." #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Usuń wpis z ulubionych" #. TRANS: Page title for first page of favorited notices. @@ -2892,12 +2911,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Nie blokuj tego użytkownika w tej grupie" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Zablokuj tego użytkownika w tej grupie" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3223,7 +3244,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Opublikuj MicroID adresu Jabber/GTalk." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Zapisano preferencje." @@ -3643,41 +3665,41 @@ msgstr "Zapisz" msgid "Save license settings" msgstr "Zapisz ustawienia licencji" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Jesteś już zalogowany." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Niepoprawna nazwa użytkownika lub hasło." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "Błąd podczas ustawiania użytkownika. Prawdopodobnie brak upoważnienia." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Zaloguj się" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Zaloguj się na witrynie" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Zapamiętaj mnie" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Automatyczne logowanie. Nie należy używać na komputerach używanych przez " "wiele osób." -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Zgubione lub zapomniane hasło?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3685,11 +3707,11 @@ msgstr "" "Z powodów bezpieczeństwa ponownie podaj nazwę użytkownika i hasło przed " "zmienianiem ustawień." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Logowanie za pomocą nazwy użytkownika i hasła." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3899,30 +3921,30 @@ msgid "You have not registered any applications yet." msgstr "Nie zarejestrowano jeszcze żadnych aplikacji." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Połączone aplikacje" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "Istnieją następujące połączenia dla konta." #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Nie jesteś użytkownikiem tej aplikacji." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, php-format msgid "Unable to revoke access for application: %s." msgstr "Nie można unieważnić dostępu dla aplikacji: %s." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3932,14 +3954,14 @@ msgstr "" "$s." #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "Nie upoważniono żadnych aplikacji do używania konta." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " @@ -3948,6 +3970,16 @@ msgstr "" "Jesteś programistą? [Zarejestruj aplikację kliencką OAuth](%s) do użycia z " "tą witryną StatusNet." +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "Nie odnaleziono strony." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "Nie odnaleziono wpisu nadrzędnego." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Wpis nie posiada profilu." @@ -3957,6 +3989,16 @@ msgstr "Wpis nie posiada profilu." msgid "%1$s's status on %2$s" msgstr "Stan użytkownika %1$s na %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Nie odnaleziono odbiorcy." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4046,17 +4088,21 @@ msgstr "Podano nieprawidłowy token logowania." msgid "Login token expired." msgstr "Token logowania wygasł." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Wysłane wiadomości użytkownika %1$s - strona %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Wysłane wiadomości użytkownika %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "To są wiadomości wysłane, czyli prywatne wiadomości, które wysłałeś." @@ -4082,40 +4128,42 @@ msgstr "Poprzednie hasło" msgid "New password" msgstr "Nowe hasło" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" -msgstr "6 lub więcej znaków" +#: actions/passwordsettings.php:109 actions/register.php:423 +msgid "6 or more characters." +msgstr "6 lub więcej znaków." -#: actions/passwordsettings.php:113 -msgid "Same as password above" -msgstr "Takie samo jak powyższe hasło" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +msgid "Same as password above." +msgstr "Takie samo jak powyższe hasło." #: actions/passwordsettings.php:117 msgid "Change" msgstr "Zmień" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Hasło musi mieć sześć lub więcej znaków." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Hasła nie pasują do siebie." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Niepoprawne poprzednie hasło" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Błąd podczas zapisywania użytkownika; nieprawidłowy." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +msgid "Cannot save new password." msgstr "Nie można zapisać nowego hasła." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Zapisano hasło." @@ -4443,14 +4491,14 @@ msgid "Profile information" msgstr "Informacje o profilu" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 małe litery lub liczby, bez spacji i znaków przestankowych." #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4458,20 +4506,20 @@ msgstr "Imię i nazwisko" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Strona domowa" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site." msgstr "Adres URL strony domowej, bloga lub profilu na innej witrynie." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4480,28 +4528,29 @@ msgstr[1] "Opisz siebie i swoje zainteresowania w %d znakach" msgstr[2] "Opisz siebie i swoje zainteresowania w %d znakach" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Opisz się i swoje zainteresowania" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "O mnie" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Położenie" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\"" @@ -4520,8 +4569,10 @@ msgstr "Znaczniki" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub " "spacjami" @@ -4533,7 +4584,8 @@ msgstr "Język" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Preferowany język" #. TRANS: Dropdownlist label in form for profile settings. @@ -4548,15 +4600,16 @@ msgstr "W jakiej strefie czasowej zwykle się znajdujesz?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Automatycznie subskrybuj każdego, kto mnie subskrybuje (najlepsze dla botów)" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4576,9 +4629,9 @@ msgstr "Język jest za długi (maksymalnie 50 znaków)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Nieprawidłowy znacznik: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4818,6 +4871,12 @@ msgstr "Przywróć hasło" msgid "Password recovery requested" msgstr "Zażądano przywracania hasła" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Zapisano hasło." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4828,11 +4887,6 @@ msgstr "Nieznane działanie" msgid "6 or more characters, and do not forget it!" msgstr "6 lub więcej znaków, i nie zapomnij go." -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -msgid "Same as password above." -msgstr "Takie samo jak powyższe hasło." - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4884,13 +4938,8 @@ msgstr "Hasło musi mieć sześć lub więcej znaków." msgid "Password and confirmation do not match." msgstr "Hasło i potwierdzenie nie pasują do siebie." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -msgid "Cannot save new password." -msgstr "Nie można zapisać nowego hasła." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Błąd podczas ustawiania użytkownika." @@ -4899,92 +4948,93 @@ msgstr "Błąd podczas ustawiania użytkownika." msgid "New password successfully saved. You are now logged in." msgstr "Pomyślnie zapisano nowe hasło. Jesteś teraz zalogowany." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Tylko zaproszone osoby mogą się rejestrować." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Nieprawidłowy kod zaproszenia." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Rejestracja powiodła się" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Zarejestruj się" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Rejestracja nie jest dozwolona." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "" "Nie można się zarejestrować, jeśli nie zgadzasz się z warunkami licencji." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Adres e-mail już istnieje." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Nieprawidłowa nazwa użytkownika lub hasło." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "Za pomocą tego formularza można utworzyć nowe konto. Można wtedy wysyłać " "wpisy i połączyć się z przyjaciółmi i kolegami. " -#: actions/register.php:437 -msgid "6 or more characters." -msgstr "6 lub więcej znaków." - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "Używane tylko do aktualizacji, ogłoszeń i przywracania hasła" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Dłuższa nazwa, najlepiej twoje \"prawdziwe\" imię i nazwisko" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "Adres URL strony domowej, bloga lub profilu na innej witrynie" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\"" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "Rozumiem, że treść i dane %1$s są prywatne i poufne." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "Moje teksty i pliki są objęte prawami autorskimi %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "Moje teksty i pliki pozostają pod moimi prawami autorskimi." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Wszystkie prawa zastrzeżone." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4993,7 +5043,7 @@ msgstr "" "Tekst i pliki są dostępne na warunkach licencji %s, poza tymi prywatnymi " "danymi: hasło, adres e-mail, adres komunikatora i numer telefonu." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5026,7 +5076,7 @@ msgstr "" "Dziękujemy za zarejestrowanie się i mamy nadzieję, że używanie tej usługi " "sprawi ci przyjemność." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5059,7 +5109,8 @@ msgid "User nickname" msgstr "Pseudonim użytkownika" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Pseudonim użytkownika którego chcesz obserwować" #: actions/remotesubscribe.php:132 @@ -5067,7 +5118,8 @@ msgid "Profile URL" msgstr "Adres URL profilu" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "Adres URL profilu na innej, zgodnej usłudze mikroblogowania" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5077,7 +5129,8 @@ msgid "Subscribe" msgstr "Subskrybuj" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "Nieprawidłowy adres URL profilu (błędny format)" #: actions/remotesubscribe.php:167 @@ -5274,7 +5327,7 @@ msgstr "Nie można unieważnić rol użytkowników na tej witrynie." msgid "User doesn't have this role." msgstr "Użytkownik nie ma tej roli." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5316,87 +5369,87 @@ msgstr "Włącza wyjście debugowania dla sesji." msgid "Save site settings" msgstr "Zapisz ustawienia witryny" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Musisz być zalogowany, aby wyświetlić aplikację." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Profil aplikacji" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Ikona" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Nazwa" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organizacja" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Opis" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Statystyki" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "Utworzona przez %1$s - domyślny dostęp: %2$s - %3$d użytkowników" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Czynności aplikacji" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Przywrócenie klucza i sekretu" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Usuń" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Informacje o aplikacji" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Klucz klienta" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Sekret klienta" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "Adres URL tokenu żądania" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "Adres URL tokenu żądania" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "Adres URL upoważnienia" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5404,7 +5457,7 @@ msgstr "" "Uwaga: obsługiwane są podpisy HMAC-SHA1. Metoda podpisu w zwykłym tekście " "nie jest obsługiwana." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "Jesteś pewien, że chcesz przywrócić klucz i sekret klienta?" @@ -5497,16 +5550,18 @@ msgid "Group profile" msgstr "Profil grupy" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "Adres URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Wpis" @@ -5652,7 +5707,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s nadał etykietę %2$s" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5902,7 +5957,8 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Zapisz wpis witryny" #. TRANS: Title for SMS settings. @@ -5960,7 +6016,8 @@ msgstr "Numer telefonu SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Numer telefonu, bez znaków przestankowych i spacji, z kodem państwa" #. TRANS: Form legend for SMS preferences form. @@ -6299,8 +6356,9 @@ msgstr "Znacznik %s" msgid "User profile" msgstr "Profil użytkownika" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Zdjęcie" @@ -6317,6 +6375,11 @@ msgstr "" "Znaczniki dla tego użytkownika (litery, liczby, -, . i _), oddzielone " "przecinkami lub spacjami" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Nieprawidłowy znacznik: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6353,7 +6416,7 @@ msgstr "Brak identyfikatora profilu w żądaniu." msgid "Unsubscribed" msgstr "Zrezygnowano z subskrypcji" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6385,8 +6448,8 @@ msgstr "Nieprawidłowy tekst powitania. Maksymalna długość to 255 znaków." #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 -#, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +#, fuzzy, php-format +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Nieprawidłowa domyślna subskrypcja: \"%1$s\" nie jest użytkownikiem." #. TRANS: Link description in user account settings menu. @@ -6446,55 +6509,71 @@ msgstr "Czy zezwolić użytkownikom zapraszanie nowych użytkowników." #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "Zapisz ustawienia użytkownika" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Upoważnij subskrypcję" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Sprawdź te szczegóły, aby upewnić się, czy na pewno chcesz subskrybować " "wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, " "naciśnij \"Odrzuć\"." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Licencja" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Zaakceptuj" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Subskrybuj tego użytkownika" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Odrzuć" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Odrzuć tę subskrypcję" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Brak żądania upoważnienia." -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Upoważniono subskrypcję" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6503,11 +6582,12 @@ msgstr "" "Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. " "Sprawdź w instrukcjach witryny, jak upoważnić subskrypcję. Token subskrypcji:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Odrzucono subskrypcję" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6516,39 +6596,64 @@ msgstr "" "Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. " "Sprawdź w instrukcjach witryny, jak w pełni odrzucić subskrypcję." -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "Adres URI nasłuchującego \"%s\" nie został tutaj odnaleziony." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "Adres URI nasłuchującego \"%s\" jest za długi." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "Adres URI nasłuchującego \"%s\" jest lokalnym użytkownikiem." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "Adres URL profilu \"%s\" jest dla lokalnego użytkownika." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"Licencja nasłuchiwanego strumienia \"%1$s\" nie jest zgodna z licencją " +"witryny \"%2$s\"." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "Adres URL \"%s\" jest nieprawidłowy." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Nie można odczytać adresu URL awatara \"%s\"." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Błędny typ obrazu dla adresu URL awatara \"%s\"." #. TRANS: Page title for profile design page. @@ -7771,6 +7876,11 @@ msgstr "Zmiana hasła nie jest dozwolona." msgid "Block" msgstr "Zablokuj" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Zablokuj tego użytkownika" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8228,6 +8338,11 @@ msgstr "Upoważnione połączone aplikacje" msgid "Database error" msgstr "Błąd bazy danych" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Usuń tego użytkownika" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8262,6 +8377,21 @@ msgstr "Zmień kolory" msgid "Use defaults" msgstr "Użycie domyślnych" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Przywróć domyślny wygląd" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Przywróć domyślne ustawienia" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Zapisz wygląd" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8368,7 +8498,6 @@ msgid "Grant this user the \"%s\" role" msgstr "Nadaj użytkownikowi rolę \"%s\"" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 małe litery lub liczby, bez spacji i znaków przestankowych." @@ -8381,12 +8510,12 @@ msgid "Describe the group or topic" msgstr "Opisz grupę lub temat" #: lib/groupeditform.php:163 -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d character or less" msgid_plural "Describe the group or topic in %d characters or less" -msgstr[0] "Opisz grupę lub temat w %d znaku." -msgstr[1] "Opisz grupę lub temat w %d znakach lub mniej." -msgstr[2] "Opisz grupę lub temat w %d znakach lub mniej." +msgstr[0] "Opisz grupę lub temat w %d znaku" +msgstr[1] "Opisz grupę lub temat w %d znakach" +msgstr[2] "Opisz grupę lub temat w %d znakach" #: lib/groupeditform.php:175 msgid "" @@ -9153,6 +9282,10 @@ msgstr "Odpowiedz na ten wpis" msgid "Reply" msgstr "Odpowiedz" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Usuń ten wpis" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Powtórzono wpis" @@ -9433,6 +9566,10 @@ msgstr "Zaproś" msgid "Invite friends and colleagues to join you on %s" msgstr "Zaproś przyjaciół i kolegów do dołączenia do ciebie na %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Subskrybuj tego użytkownika" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9719,3 +9856,15 @@ msgstr "Nieprawidłowy kod XML, brak głównego XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Pobieranie kopii zapasowej z pliku \"%s\"." + +#~ msgid "6 or more characters" +#~ msgstr "6 lub więcej znaków" + +#~ msgid "Same as password above" +#~ msgstr "Takie samo jak powyższe hasło" + +#~ msgid "Can't save new password." +#~ msgstr "Nie można zapisać nowego hasła." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "Adres URL strony domowej, bloga lub profilu na innej witrynie" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index af8af1c4e5..03e225030f 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -15,17 +15,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:34+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:39+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -157,7 +157,7 @@ msgstr "Página não foi encontrada." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -520,7 +520,8 @@ msgstr "Destinatário não encontrado." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" "Não pode enviar mensagens directas a utilizadores que não sejam amigos." @@ -607,7 +608,7 @@ msgstr "Não foi possível encontrar o utilizador de destino." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Utilizador já é usado. Tente outro." @@ -617,7 +618,7 @@ msgstr "Utilizador já é usado. Tente outro." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Utilizador não é válido." @@ -630,7 +631,7 @@ msgstr "Utilizador não é válido." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "Página de ínicio não é uma URL válida." @@ -640,7 +641,7 @@ msgstr "Página de ínicio não é uma URL válida." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "Nome completo demasiado longo (máx. 255 caracteres)." @@ -669,7 +670,7 @@ msgstr[1] "Descrição demasiado longa (máx. %d caracteres)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "Localidade demasiado longa (máx. 255 caracteres)." @@ -828,15 +829,15 @@ msgstr "Não tem autorização." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "Ocorreu um problema com a sua sessão. Por favor, tente novamente." @@ -868,7 +869,7 @@ msgstr "Erro na base de dados ao inserir o utilizador da aplicação OAuth." #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Envio inesperado de formulário." @@ -920,19 +921,20 @@ msgstr "Conta" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Utilizador" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Senha" @@ -1056,7 +1058,7 @@ msgstr "Método da API não encontrado." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "Formato não suportado." #. TRANS: Client error displayed requesting a deleted status. @@ -1234,25 +1236,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Procurar no conteúdo das notas" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." @@ -1420,7 +1423,7 @@ msgid "Not a member." msgstr "Todos os membros" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Não foi possível apagar a auto-subscrição." @@ -1525,9 +1528,11 @@ msgstr "Pode carregar o seu avatar pessoal. O tamanho máximo do ficheiro é %s. #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Utilizador sem perfil correspondente." @@ -1585,9 +1590,10 @@ msgstr "Cortar" msgid "No file uploaded." msgstr "Não foi carregado nenhum ficheiro." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Escolha uma área quadrada da imagem para ser o seu avatar" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1647,7 +1653,7 @@ msgstr "Fundo" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1688,7 +1694,8 @@ msgstr "Não" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Não bloquear este utilizador" #. TRANS: Button label on the user block form. @@ -1705,9 +1712,9 @@ msgid "Yes" msgstr "Sim" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Bloquear este utilizador" #. TRANS: Server error displayed when blocking a user fails. @@ -1872,7 +1879,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Confirmação" @@ -1902,13 +1909,13 @@ msgstr "Aplicação não foi encontrada." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Não é o proprietário desta aplicação." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com a sua sessão." @@ -1932,12 +1939,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Não apagar esta aplicação" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Apagar esta aplicação" #. TRANS: Client error when trying to delete group while not logged in. @@ -1995,13 +2004,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 #, fuzzy -msgid "Do not delete this group" +msgid "Do not delete this group." msgstr "Não apagar esta nota" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 #, fuzzy -msgid "Delete this group" +msgid "Delete this group." msgstr "Apagar este utilizador" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2044,12 +2053,14 @@ msgstr "Tem a certeza de que quer apagar esta nota?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Não apagar esta nota" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Apagar esta nota" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2086,13 +2097,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "Não apagar esta nota" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Apagar este utilizador" #. TRANS: Message used as title for design settings for the site. @@ -2262,21 +2273,21 @@ msgid "Use defaults" msgstr "Usar predefinições" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Repor estilos predefinidos" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Repor predefinição" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Gravar o estilo" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2308,7 +2319,7 @@ msgid "You must be logged in to edit an application." msgstr "Tem de iniciar uma sessão para editar uma aplicação." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Aplicação não foi encontrada." @@ -2594,7 +2605,7 @@ msgid "Cannot normalize that email address." msgstr "Não é possível normalizar esse endereço electrónico" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Correio electrónico é inválido." @@ -2671,19 +2682,22 @@ msgstr "Sem endereço electrónico de entrada." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Não foi possível actualizar o registo do utilizador." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Endereço electrónico de entrada foi removido." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Adicionado endereço electrónico de entrada novo." @@ -2694,7 +2708,8 @@ msgstr "Esta nota já é uma favorita!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Retirar das favoritas" #. TRANS: Page title for first page of favorited notices. @@ -2934,12 +2949,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Não bloquear acesso deste utilizador a este grupo" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Bloquear acesso deste utilizador a este grupo" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3269,7 +3286,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Publicar um MicroID para o meu endereço Jabber/GTalk." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Preferências gravadas." @@ -3688,41 +3706,41 @@ msgstr "Gravar" msgid "Save license settings" msgstr "" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Sessão já foi iniciada." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Nome de utilizador ou senha incorrectos." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "Erro ao preparar o utilizador. Provavelmente não está autorizado." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Entrar" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Iniciar sessão no site" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Lembrar-me neste computador" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" "De futuro, iniciar sessão automaticamente. Não usar em computadores " "partilhados!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Perdeu ou esqueceu-se da senha?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3730,11 +3748,11 @@ msgstr "" "Por razões de segurança, por favor re-introduza o seu nome de utilizador e " "senha antes de alterar as configurações." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Iniciar sessão com um nome de utilizador e senha." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3945,30 +3963,30 @@ msgid "You have not registered any applications yet." msgstr "Ainda não registou nenhuma aplicação." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Aplicações ligadas" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Não é utilizador dessa aplicação." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "Não foi possível retirar acesso da aplicação: %s" #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3976,20 +3994,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "Não permitiu que nenhuma aplicação use a sua conta." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "Método da API não encontrado." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "Método da API não encontrado." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Nota não tem perfil." @@ -3999,6 +4027,16 @@ msgstr "Nota não tem perfil." msgid "%1$s's status on %2$s" msgstr "Estado de %1$s em %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Destinatário não encontrado." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4089,17 +4127,21 @@ msgstr "Chave de entrada especificada é inválida." msgid "Login token expired." msgstr "Chave de entrada expirou." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Caixa de saída de %s - página %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Caixa de saída de %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "Esta é a sua caixa de saída, que apresenta as mensagens privadas que enviou." @@ -4126,40 +4168,45 @@ msgstr "Antiga" msgid "New password" msgstr "Nova" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 ou mais caracteres" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "Repita a senha nova" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Modificar" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Senha tem de ter 6 ou mais caracteres." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Senhas não coincidem." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Senha antiga incorrecta." -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Erro ao guardar utilizador; inválido." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Não é possível guardar a nova senha." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Senha gravada." @@ -4504,7 +4551,7 @@ msgid "Profile information" msgstr "Informação do perfil" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 letras minúsculas ou números, sem pontuação ou espaços" @@ -4512,7 +4559,7 @@ msgstr "1-64 letras minúsculas ou números, sem pontuação ou espaços" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4520,13 +4567,13 @@ msgstr "Nome completo" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Página pessoal" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "URL da sua página pessoal, blogue ou perfil noutro site na internet" @@ -4534,7 +4581,7 @@ msgstr "URL da sua página pessoal, blogue ou perfil noutro site na internet" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4542,28 +4589,29 @@ msgstr[0] "Descreva-se e aos seus interesses (máx. 140 caracteres)" msgstr[1] "Descreva-se e aos seus interesses (máx. 140 caracteres)" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Descreva-se e aos seus interesses" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Biografia" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Localidade" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Onde está, por ex. \"Cidade, Região, País\"" @@ -4582,8 +4630,10 @@ msgstr "Categorias" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Categorias para si (letras, números, -, ., _), separadas por vírgulas ou " "espaços" @@ -4595,7 +4645,8 @@ msgstr "Língua" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Língua preferida" #. TRANS: Dropdownlist label in form for profile settings. @@ -4610,14 +4661,15 @@ msgstr "Em que fuso horário se encontra normalmente?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "Subscrever automaticamente quem me subscreva (óptimo para não-humanos)" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4637,9 +4689,9 @@ msgstr "Língua é demasiado extensa (máx. 50 caracteres)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Categoria inválida: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4886,6 +4938,12 @@ msgstr "Recuperar senha" msgid "Password recovery requested" msgstr "Solicitada recuperação da senha" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Senha gravada." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4897,12 +4955,6 @@ msgstr "Acção desconhecida" msgid "6 or more characters, and do not forget it!" msgstr "6 ou mais caracteres, e não a esqueça!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "Repita a senha nova" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4957,14 +5009,8 @@ msgstr "Senha tem de ter 6 ou mais caracteres." msgid "Password and confirmation do not match." msgstr "A senha e a confirmação não coincidem." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Não é possível guardar a nova senha." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Erro ao configurar utilizador." @@ -4973,96 +5019,96 @@ msgstr "Erro ao configurar utilizador." msgid "New password successfully saved. You are now logged in." msgstr "A senha nova foi gravada com sucesso. Iniciou uma sessão." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Desculpe, só pessoas convidadas se podem registar." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Desculpe, código de convite inválido." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Registo efectuado" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Registar" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Registo não é permitido." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Não se pode registar se não aceita a licença." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Correio electrónico já existe." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Nome de utilizador ou senha inválidos." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "Com este formulário pode criar uma conta nova. Poderá então publicar notas e " "ligar-se a amigos e colegas. " -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 ou mais caracteres" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Correio" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "Usado apenas para actualizações, anúncios e recuperação da senha" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Nome mais longo, de preferência o seu nome \"verdadeiro\"" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL da sua página pessoal, blogue ou perfil noutro site na internet" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Onde está, por ex. \"Cidade, Região, País\"" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" "Compreendo que o conteúdo e dados do site %1$s são privados e confidenciais." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" "Os meus textos e ficheiros estão protegidos pelos direitos de autor de %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "" "Os meus textos e ficheiros permanecem protegidos pelos meus próprios " "direitos de autor." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Todos os direitos reservados." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5072,7 +5118,7 @@ msgstr "" "estes dados privados: senha, endereço de correio electrónico, endereço de " "mensageiro instantâneo, número de telefone." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5105,7 +5151,7 @@ msgstr "" "\n" "Obrigado por se ter registado e esperamos que se divirta usando este serviço." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5138,7 +5184,8 @@ msgid "User nickname" msgstr "Nome do utilizador" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Nome do utilizador que pretende seguir" #: actions/remotesubscribe.php:132 @@ -5146,7 +5193,8 @@ msgid "Profile URL" msgstr "URL do perfil" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "URL do seu perfil noutro serviço de microblogues compatível" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5156,7 +5204,8 @@ msgid "Subscribe" msgstr "Subscrever" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "URL de perfil inválido (formato incorrecto)" #: actions/remotesubscribe.php:167 @@ -5357,7 +5406,7 @@ msgstr "Não pode retirar funções aos utilizadores neste site." msgid "User doesn't have this role." msgstr "O utilizador não tem esta função." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5399,87 +5448,87 @@ msgstr "Ligar a impressão de dados de depuração, para sessões." msgid "Save site settings" msgstr "Gravar configurações do site" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Tem de iniciar uma sessão para ver uma aplicação." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Perfil da aplicação" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Ícone" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Nome" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organização" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Descrição" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Estatísticas" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "Criado por %1$s - acesso por omissão %2$s - %3$d utilizadores" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Operações da aplicação" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Reiniciar chave e segredo" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Apagar" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Informação da aplicação" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Chave do consumidor" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Segredo do consumidor" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "URL da chave de pedido" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "URL da chave de acesso" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "Autorizar URL" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5487,7 +5536,7 @@ msgstr "" "Nota: Assinaturas HMAC-SHA1 são suportadas. O método de assinatura com texto " "simples não é suportado." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" "Tem a certeza de que quer reiniciar a sua chave e segredo de consumidor?" @@ -5581,16 +5630,18 @@ msgid "Group profile" msgstr "Perfil do grupo" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Anotação" @@ -5738,7 +5789,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s, página %2$d" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5988,7 +6039,8 @@ msgstr "Texto do aviso do site (máx. 255 caracteres; pode usar HTML)" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Gravar aviso do site" #. TRANS: Title for SMS settings. @@ -6046,7 +6098,8 @@ msgstr "Número de telefone para SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Número de telefone, sem pontuação ou espaços, com código de área" #. TRANS: Form legend for SMS preferences form. @@ -6385,8 +6438,9 @@ msgstr "Categoria %s" msgid "User profile" msgstr "Perfil" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Foto" @@ -6403,6 +6457,11 @@ msgstr "" "Categorias para este utilizador (letras, números, ., _), separadas por " "vírgulas ou espaços" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Categoria inválida: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6438,7 +6497,7 @@ msgstr "O pedido não tem a identificação do perfil." msgid "Unsubscribed" msgstr "Subscrição cancelada" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6472,7 +6531,7 @@ msgstr "Texto de boas-vindas inválido. Tamanho máx. é 255 caracteres." #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, fuzzy, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Subscrição predefinida é inválida: '%1$s' não é utilizador." #. TRANS: Link description in user account settings menu. @@ -6533,55 +6592,71 @@ msgstr "Permitir, ou não, que utilizadores convidem utilizadores novos." #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" -msgstr "" +#, fuzzy +msgid "Save user settings." +msgstr "Gravar configurações do site" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Autorizar subscrição" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Por favor, verifique estes detalhes para se certificar de que deseja " "subscrever as notas deste utilizador. Se não fez um pedido para subscrever " "as notas de alguém, simplesmente clique \"Rejeitar\"." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Licença" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Aceitar" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Subscrever este utilizador" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Rejeitar" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Rejeitar esta subscrição" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Não há pedido de autorização!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Subscrição autorizada" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6591,11 +6666,12 @@ msgstr "" "Verifique as instruções do site para saber como autorizar a subscrição. A " "sua chave de subscrição é:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Subscrição rejeitada" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6605,39 +6681,64 @@ msgstr "" "Verifique as instruções do site para saber como rejeitar completamente a " "subscrição." -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "A listener URI ‘%s’ não foi encontrada aqui." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "URI do escutado ‘%s’ é demasiado longo." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "URI do ouvido ‘%s’ é um utilizador local." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "A URL ‘%s’ do perfil é de um utilizador local." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"Licença ‘%1$s’ da listenee stream não é compatível com a licença ‘%2$s’ do " +"site." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "A URL ‘%s’ do avatar é inválida." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Não é possível ler a URL do avatar ‘%s’." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Tipo de imagem incorrecto para o avatar da URL ‘%s’." #. TRANS: Page title for profile design page. @@ -7857,6 +7958,11 @@ msgstr "Não é permitido mudar a palavra-chave" msgid "Block" msgstr "Bloquear" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Bloquear este utilizador" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8312,6 +8418,11 @@ msgstr "Aplicações ligadas autorizadas" msgid "Database error" msgstr "Erro de base de dados" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Apagar este utilizador" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8350,6 +8461,21 @@ msgstr "Alterar cores" msgid "Use defaults" msgstr "Usar predefinições" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Repor estilos predefinidos" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Repor predefinição" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Gravar o estilo" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8457,7 +8583,6 @@ msgid "Grant this user the \"%s\" role" msgstr "Atribuir a este utilizador a função \"%s\"" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 letras minúsculas ou números, sem pontuação ou espaços" @@ -9235,6 +9360,10 @@ msgstr "Responder a esta nota" msgid "Reply" msgstr "Responder" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Apagar esta nota" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Nota repetida" @@ -9516,6 +9645,10 @@ msgstr "Convidar" msgid "Invite friends and colleagues to join you on %s" msgstr "Convidar amigos e colegas para se juntarem a si em %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Subscrever este utilizador" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9792,3 +9925,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6 ou mais caracteres" + +#~ msgid "Same as password above" +#~ msgstr "Repita a senha nova" + +#~ msgid "Can't save new password." +#~ msgstr "Não é possível guardar a nova senha." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "URL da sua página pessoal, blogue ou perfil noutro site na internet" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 80a66372b3..775137fb08 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:37+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:41+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -158,7 +158,7 @@ msgstr "Esta página não existe." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -420,7 +420,6 @@ msgstr "Não foi possível atualizar a sua aparência." #. TRANS: Title for Atom feed. #: actions/apiatomservice.php:85 -#, fuzzy msgctxt "ATOM" msgid "Main" msgstr "Principal" @@ -457,9 +456,9 @@ msgstr "Favoritas de %s" #. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname. #: actions/apiatomservice.php:126 -#, fuzzy, php-format +#, php-format msgid "%s memberships" -msgstr "Membros do grupo %s" +msgstr "Associações de %s" #. TRANS: Client error displayed when users try to block themselves. #: actions/apiblockcreate.php:105 @@ -525,7 +524,8 @@ msgstr "O usuário destinatário não foi encontrado." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" "Não é possível enviar mensagens diretas para usuários que não sejam seus " "amigos." @@ -612,7 +612,7 @@ msgstr "Não foi possível encontrar usuário de destino." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Esta identificação já está em uso. Tente outro." @@ -622,7 +622,7 @@ msgstr "Esta identificação já está em uso. Tente outro." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Não é uma identificação válida." @@ -635,7 +635,7 @@ msgstr "Não é uma identificação válida." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "A URL informada não é válida." @@ -645,7 +645,7 @@ msgstr "A URL informada não é válida." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "O nome completo é muito extenso (máx. 255 caracteres)" @@ -673,7 +673,7 @@ msgstr[1] "A descrição é muito extensa (máximo %d caracteres)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "A localização é muito extensa (máx. 255 caracteres)." @@ -828,15 +828,15 @@ msgstr "O token solicitado já foi autorizado." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -868,7 +868,7 @@ msgstr "Erro no banco de dados durante a inserção de oauth_token_association." #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Submissão inesperada de formulário." @@ -920,19 +920,20 @@ msgstr "Conta" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Usuário" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Senha" @@ -1054,8 +1055,8 @@ msgstr "O método HTTP não é suportado." #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 -#, php-format -msgid "Unsupported format: %s" +#, fuzzy, php-format +msgid "Unsupported format: %s." msgstr "Formato não suportado: %s" #. TRANS: Client error displayed requesting a deleted status. @@ -1076,7 +1077,6 @@ msgstr "Só é possível excluir usando o formato Atom." #. TRANS: Client error displayed when a user has no rights to delete notices of other users. #. TRANS: Error message displayed trying to delete a notice that was not made by the current user. #: actions/apistatusesshow.php:235 actions/deletenotice.php:78 -#, fuzzy msgid "Cannot delete this notice." msgstr "Não é possível excluir esta mensagem." @@ -1230,25 +1230,26 @@ msgid "Atom post must be an Atom entry." msgstr "A publicação Atom deve ser uma entrada Atom." #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "Só é possível manipular atividades POST." #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "Não é possível manipular o tipo de objeto de atividade \"%s\"." #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, php-format msgid "No content for notice %d." msgstr "Nenhum conteúdo para a mensagem %d." #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1275,16 +1276,15 @@ msgstr "Este perfil não existe." #. TRANS: Subtitle for Atom favorites feed. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename. #: actions/atompubfavoritefeed.php:147 -#, fuzzy, php-format +#, php-format msgid "Notices %1$s has favorited on %2$s" -msgstr "Atualizações de %1$s e amigos no %2$s!" +msgstr "Mensagens que %1$s marcou como Favoritas em %2$s" #. TRANS: Client exception thrown when trying to set a favorite for another user. #. TRANS: Client exception thrown when trying to subscribe another user. #: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225 -#, fuzzy msgid "Cannot add someone else's subscription." -msgstr "Não é possível adicionar a assinatura de outra pessoa" +msgstr "Não é possível adicionar a assinatura de outra pessoa." #. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method. #: actions/atompubfavoritefeed.php:240 @@ -1409,7 +1409,7 @@ msgid "Not a member." msgstr "Não é um membro" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Não é possível excluir a assinatura de outra pessoa" @@ -1515,9 +1515,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Usuário sem um perfil correspondente" @@ -1572,9 +1574,10 @@ msgstr "Cortar" msgid "No file uploaded." msgstr "Não foi enviado nenhum arquivo." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Selecione uma área quadrada da imagem para ser seu avatar" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1639,8 +1642,9 @@ msgstr "Fundo" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" -msgstr "" +#, fuzzy +msgid "Backup your account." +msgstr "Fazer backup da conta" #. TRANS: Client error displayed when blocking a user that has already been blocked. #: actions/block.php:68 @@ -1681,7 +1685,8 @@ msgstr "Não" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Não bloquear este usuário" #. TRANS: Button label on the user block form. @@ -1698,9 +1703,9 @@ msgid "Yes" msgstr "Sim" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Bloquear este usuário" #. TRANS: Server error displayed when blocking a user fails. @@ -1863,7 +1868,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Confirmar" @@ -1893,13 +1898,13 @@ msgstr "A aplicação não foi encontrada." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Você não é o dono desta aplicação." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com o seu token de sessão." @@ -1923,12 +1928,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Não excluir esta aplicação" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Excluir esta aplicação" #. TRANS: Client error when trying to delete group while not logged in. @@ -1982,12 +1989,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "Não excluir este grupo" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "Excluir este grupo" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2030,12 +2039,14 @@ msgstr "Tem certeza que deseja excluir esta mensagem?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Não excluir esta mensagem." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Excluir esta mensagem" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2072,13 +2083,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "Não excluir este grupo" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Excluir este usuário" #. TRANS: Message used as title for design settings for the site. @@ -2246,21 +2257,21 @@ msgid "Use defaults" msgstr "Usar o padrão|" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Restaura a aparência padrão" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Restaura de volta ao padrão" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Salvar a aparência" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2292,7 +2303,7 @@ msgid "You must be logged in to edit an application." msgstr "Você precisa estar autenticado para editar uma aplicação." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Essa aplicação não existe." @@ -2575,7 +2586,7 @@ msgid "Cannot normalize that email address." msgstr "Não foi possível normalizar este endereço de e-mail" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Não é um endereço de e-mail válido." @@ -2652,19 +2663,22 @@ msgstr "Nenhum endereço de e-mail para recebimentos." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Não foi possível atualizar o registro do usuário." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "O endereço de e-mail de recebimento foi removido." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "" "Foi adicionado um novo endereço de e-mail para recebimento de mensagens." @@ -2676,7 +2690,8 @@ msgstr "Essa mensagem já é uma favorita!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Desmarcar a favorita" #. TRANS: Page title for first page of favorited notices. @@ -2917,12 +2932,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Não bloquear este usuário neste grupo" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Bloquear este usuário neste grupo" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3255,7 +3272,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Publique um MicroID para meu endereço de Jabber/Gtalk." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "As preferências foram salvas." @@ -3675,42 +3693,42 @@ msgstr "Salvar" msgid "Save license settings" msgstr "Salvar as configurações da licença" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Já está autenticado." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Nome de usuário e/ou senha incorreto(s)." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "" "Erro na configuração do usuário. Você provavelmente não tem autorização." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Entrar" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Autenticar-se no site" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Lembrar neste computador" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Entra automaticamente da próxima vez, sem pedir a senha. Não use em " "computadores compartilhados!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Perdeu ou esqueceu sua senha?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3718,11 +3736,11 @@ msgstr "" "Por razões de segurança, por favor, digite novamente seu nome de usuário e " "senha antes de alterar suas configurações." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Autentique-se com seu nome de usuário e senha." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3937,30 +3955,30 @@ msgid "You have not registered any applications yet." msgstr "Você ainda não registrou nenhuma aplicação." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Aplicações conectadas" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "Existem as seguintes conexões para a sua conta." #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Você não é um usuário dessa aplicação." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, php-format msgid "Unable to revoke access for application: %s." msgstr "Não foi possível revogar o acesso para a aplicação: %s." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3969,14 +3987,14 @@ msgstr "" "O acesso de %1$s e do token iniciado por %2$s foi revogado com sucesso." #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "Você não autorizou nenhuma aplicação a usar a sua conta." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " @@ -3985,6 +4003,16 @@ msgstr "" "Você é um desenvolvedor? [Registre uma aplicação cliente OAuth](%s) para " "usar com esta instância do StatusNet." +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "O método da API não foi encontrado!" + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "A mensagem pai não foi encontrada." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "A mensagem não está associada a nenhum perfil." @@ -3994,6 +4022,16 @@ msgstr "A mensagem não está associada a nenhum perfil." msgid "%1$s's status on %2$s" msgstr "Mensagem de %1$s no %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "O usuário destinatário não foi encontrado." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4083,17 +4121,21 @@ msgstr "O token de autenticação especificado é inválido." msgid "Login token expired." msgstr "O token de autenticação expirou." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Enviadas por %s - pág. %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Enviadas de %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "Essa é a sua caixa de mensagens enviadas, que lista as mensagens " @@ -4121,40 +4163,45 @@ msgstr "Senha anterior" msgid "New password" msgstr "Senha nova" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "No mínimo 6 caracteres" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "Igual à senha acima" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Alterar" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "A senha deve ter, no mínimo, 6 caracteres." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "As senhas não coincidem." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "A senha anterior está errada" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Erro ao salvar usuário; inválido." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Não é possível salvar a nova senha." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "A senha foi salva." @@ -4481,14 +4528,14 @@ msgid "Profile information" msgstr "Informações do perfil" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 letras minúsculas ou números, sem pontuações ou espaços." #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4496,20 +4543,20 @@ msgstr "Nome completo" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Site" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site." msgstr "URL do seu site, blog ou perfil em outro site." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4517,28 +4564,29 @@ msgstr[0] "Descreva a si mesmo e os seus interesses em %d caractere" msgstr[1] "Descreva a si mesmo e os seus interesses em %d caracteres" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Descreva a si mesmo e os seus interesses" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Descrição" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Localização" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" @@ -4557,8 +4605,10 @@ msgstr "Etiquetas" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Suas etiquetas (letras, números, -, ., e _), separadas por vírgulas ou " "espaços" @@ -4570,7 +4620,8 @@ msgstr "Idioma" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Idioma preferencial" #. TRANS: Dropdownlist label in form for profile settings. @@ -4585,15 +4636,16 @@ msgstr "Em que fuso horário você normalmente está?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Assinar automaticamente à quem me assinar (melhor para perfis não humanos)" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4612,9 +4664,9 @@ msgstr "O nome do idioma é muito extenso (máx. 50 caracteres)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Etiqueta inválida: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4859,6 +4911,12 @@ msgstr "Recuperar a senha" msgid "Password recovery requested" msgstr "Foi solicitada a recuperação da senha" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "A senha foi salva." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4870,12 +4928,6 @@ msgstr "Ação desconhecida" msgid "6 or more characters, and do not forget it!" msgstr "No mínimo 6 caracteres. E não se esqueça dela!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "Igual à senha acima" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4930,14 +4982,8 @@ msgstr "A senha deve ter 6 ou mais caracteres." msgid "Password and confirmation do not match." msgstr "A senha e a confirmação não coincidem." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Não é possível salvar a nova senha." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Erro na configuração do usuário." @@ -4948,70 +4994,70 @@ msgstr "" "A nova senha foi salva com sucesso. A partir de agora você já está " "autenticado." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Desculpe, mas somente convidados podem se registrar." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Desculpe, mas o código do convite é inválido." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Registro realizado com sucesso" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Registrar-se" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Não é permitido o registro." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Você não pode se registrar se não aceitar a licença." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "O endereço de e-mail já existe." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Nome de usuário e/ou senha inválido(s)" -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "Através deste formulário você pode criar uma nova conta. A partir daí você " "pode publicar mensagens e se conectar a amigos e colegas. " -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "No mínimo 6 caracteres" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "Usado apenas para atualizações, anúncios e recuperações de senha" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Nome completo, de preferência seu nome \"real\"" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL do seu site, blog ou perfil em outro site" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." @@ -5019,23 +5065,23 @@ msgstr "" "Eu entendo que o conteúdo e os dados de %1$s são particulares e " "confidenciais." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "Meus textos e arquivos estão licenciados sob a %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "Meus textos e arquivos permanecem sob meus próprios direitos autorais." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Todos os direitos reservados." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5045,7 +5091,7 @@ msgstr "" "particulares: senha, endereço de e-mail, endereço do mensageiro instantâneo " "e número de telefone." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5078,7 +5124,7 @@ msgstr "" "\n" "Obrigado por se registrar e esperamos que você aproveite o serviço." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5111,7 +5157,8 @@ msgid "User nickname" msgstr "Identificação do usuário" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Identificação do usuário que você quer seguir" #: actions/remotesubscribe.php:132 @@ -5119,7 +5166,8 @@ msgid "Profile URL" msgstr "URL do perfil" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "URL do seu perfil em outro serviço de microblog compatível" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5129,7 +5177,8 @@ msgid "Subscribe" msgstr "Assinar" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "A URL do perfil é inválida (formato inválido)" #: actions/remotesubscribe.php:167 @@ -5332,7 +5381,7 @@ msgstr "Não é possível revogar os papéis dos usuários neste site." msgid "User doesn't have this role." msgstr "O usuário não possui este papel." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5374,87 +5423,87 @@ msgstr "Ativa a saída de depuração para as sessões." msgid "Save site settings" msgstr "Salvar as configurações do site" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Você deve estar autenticado para visualizar uma aplicação." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Perfil da aplicação" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Ícone" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Nome" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organização" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Descrição" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Estatísticas" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "Criado por %1$s - acesso %2$s por padrão - %3$d usuários" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Ações da aplicação" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Restaurar a chave e o segredo" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Excluir" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Informação da aplicação" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Chave do consumidor" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Segredo do consumidor" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "URL do token de requisição" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "URL do token de acesso" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "Autorizar a URL" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5462,7 +5511,7 @@ msgstr "" "Nota: Nós suportamos assinaturas HMAC-SHA1. Nós não suportamos o método de " "assinatura em texto plano." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "Tem certeza que deseja restaurar sua chave e segredo de consumidor?" @@ -5554,16 +5603,18 @@ msgid "Group profile" msgstr "Perfil do grupo" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "Site" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Mensagem" @@ -5709,7 +5760,7 @@ msgid "%1$s tagged %2$s" msgstr "Mensagens de %1$s etiquetadas como %2$s" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5960,7 +6011,8 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Salvar os avisos do site" #. TRANS: Title for SMS settings. @@ -6018,7 +6070,8 @@ msgstr "Telefone para SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Número de telefone, sem pontuação ou espaços, com código de área" #. TRANS: Form legend for SMS preferences form. @@ -6354,8 +6407,9 @@ msgstr "Etiqueta %s" msgid "User profile" msgstr "Perfil do usuário" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Imagem" @@ -6372,6 +6426,11 @@ msgstr "" "Etiquetas para este usuário (letras, números, -, ., e _), separadas por " "vírgulas ou espaços" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Etiqueta inválida: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6407,7 +6466,7 @@ msgstr "A requisição não possui nenhuma ID de perfil." msgid "Unsubscribed" msgstr "Cancelado" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6440,8 +6499,8 @@ msgstr "" #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 -#, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +#, fuzzy, php-format +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Assinatura padrão inválida: '%1$s' não é um usuário." #. TRANS: Link description in user account settings menu. @@ -6501,55 +6560,71 @@ msgstr "Define se os usuários podem ou não convidar novos usuários." #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "Salvar as configurações de usuário" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Autorizar a assinatura" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Por favor, verifique estes detalhes para ter certeza que você quer assinar " "as mensagens deste usuário. Se você não solicitou assinar as mensagens de " "alguém, clique em \"Recusar\"." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Licença" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Aceitar" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Assinar este usuário" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Recusar" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Recusar esta assinatura" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Nenhum pedido de autorização!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "A assinatura foi autorizada" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6559,11 +6634,12 @@ msgstr "" "Verifique as instruções do site para detalhes sobre como autorizar a " "assinatura. Seu token de assinatura é:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "A assinatura foi recusada" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6573,39 +6649,64 @@ msgstr "" "Verifique as instruções do site para detalhes sobre como rejeitar " "completamente a assinatura." -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "A URI ‘%s’ do usuário não foi encontrada aqui." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "A URI ‘%s’ do usuário é muito extensa." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "A URI ‘%s’ é de um usuário local." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "A URL ‘%s’ do perfil é de um usuário local." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"A licença '%1$s' do fluxo do usuário não é compatível com a licença '%2$s' " +"do site." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "A URL ‘%s’ do avatar não é válida." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Não é possível ler a URL '%s' do avatar." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Tipo de imagem errado para a URL '%s' do avatar." #. TRANS: Page title for profile design page. @@ -7824,6 +7925,11 @@ msgstr "Não é permitido alterar a senha" msgid "Block" msgstr "Bloquear" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Bloquear este usuário" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8287,6 +8393,11 @@ msgstr "Aplicações autorizadas conectadas" msgid "Database error" msgstr "Erro no banco de dados" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Excluir este usuário" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8324,6 +8435,21 @@ msgstr "Alterar a cor" msgid "Use defaults" msgstr "Usar o padrão|" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Restaura a aparência padrão" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Restaura de volta ao padrão" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Salvar a aparência" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8431,7 +8557,6 @@ msgid "Grant this user the \"%s\" role" msgstr "Associa o papel \"%s\" a este usuário" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 letras minúsculas ou números, sem pontuações ou espaços." @@ -9214,6 +9339,10 @@ msgstr "Responder a esta mensagem" msgid "Reply" msgstr "Responder" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Excluir esta mensagem" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Mensagem repetida" @@ -9495,6 +9624,10 @@ msgstr "Convidar" msgid "Invite friends and colleagues to join you on %s" msgstr "Convide seus amigos e colegas para unir-se a você no %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Assinar este usuário" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9771,3 +9904,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "No mínimo 6 caracteres" + +#~ msgid "Same as password above" +#~ msgstr "Igual à senha acima" + +#~ msgid "Can't save new password." +#~ msgstr "Não é possível salvar a nova senha." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "URL do seu site, blog ou perfil em outro site" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 03126770f7..7fb26f6dfd 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -18,18 +18,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:39+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:42+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -162,7 +162,7 @@ msgstr "Нет такой страницы." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -528,7 +528,8 @@ msgstr "Получатель не найден." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" "Не удаётся посылать прямые сообщения пользователям, которые не являются " "Вашими друзьями." @@ -615,7 +616,7 @@ msgstr "Не удаётся найти целевого пользователя #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое." @@ -625,7 +626,7 @@ msgstr "Такое имя уже используется. Попробуйте #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Неверное имя." @@ -638,7 +639,7 @@ msgstr "Неверное имя." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "URL Главной страницы неверен." @@ -648,7 +649,7 @@ msgstr "URL Главной страницы неверен." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "Полное имя слишком длинное (максимум 255 символов)." @@ -677,7 +678,7 @@ msgstr[2] "Слишком длинное описание (максимум %d #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "Слишком длинное месторасположение (максимум 255 символов)." @@ -833,15 +834,15 @@ msgstr "Ключ запроса уже авторизован." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "Проблема с вашим ключом сессии. Пожалуйста, попробуйте ещё раз." @@ -872,7 +873,7 @@ msgstr "Ошибка базы данных при вставке oauth_token_ass #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Нетиповое подтверждение формы." @@ -924,19 +925,20 @@ msgstr "Аккаунт" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Имя" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Пароль" @@ -1058,8 +1060,8 @@ msgstr "HTTP-метод не поддерживается." #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 -#, php-format -msgid "Unsupported format: %s" +#, fuzzy, php-format +msgid "Unsupported format: %s." msgstr "Неподдерживаемый формат: %s" #. TRANS: Client error displayed requesting a deleted status. @@ -1235,25 +1237,26 @@ msgid "Atom post must be an Atom entry." msgstr "POST-запрос Atom должен быть объектом Atom." #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "Возможна обработка только POST-запросов." #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "Невозможно обработать действия объекта типа «%s»." #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, php-format msgid "No content for notice %d." msgstr "Нет содержания для записи %d." #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1414,7 +1417,7 @@ msgid "Not a member." msgstr "Все участники" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Невозможно удалить подписку на самого себя." @@ -1521,9 +1524,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Пользователь без соответствующего профиля." @@ -1578,9 +1583,10 @@ msgstr "Обрезать" msgid "No file uploaded." msgstr "Файл не загружен." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Подберите нужный квадратный участок для вашей аватары" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1640,7 +1646,8 @@ msgstr "Фон" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +#, fuzzy +msgid "Backup your account." msgstr "Резервное копирование учетной записи" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1681,7 +1688,8 @@ msgstr "Нет" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Не блокировать этого пользователя" #. TRANS: Button label on the user block form. @@ -1698,9 +1706,9 @@ msgid "Yes" msgstr "Да" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Заблокировать пользователя." #. TRANS: Server error displayed when blocking a user fails. @@ -1863,7 +1871,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Подтверждение" @@ -1893,13 +1901,13 @@ msgstr "Приложение не найдено." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Вы не являетесь владельцем этого приложения." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Проблема с вашим ключом сессии." @@ -1923,12 +1931,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Не удаляйте это приложение" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Удалить это приложение" #. TRANS: Client error when trying to delete group while not logged in. @@ -1982,12 +1992,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "Не удаляйте эту группу" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "Удалить эту группу" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2030,12 +2042,14 @@ msgstr "Вы уверены, что хотите удалить эту запи #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Не удалять эту запись" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Удалить эту запись" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2072,13 +2086,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "Не удаляйте эту группу" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Удалить этого пользователя" #. TRANS: Message used as title for design settings for the site. @@ -2244,21 +2258,21 @@ msgid "Use defaults" msgstr "Использовать значения по умолчанию" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Восстановить оформление по умолчанию" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Восстановить значения по умолчанию" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Сохранить оформление" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2290,7 +2304,7 @@ msgid "You must be logged in to edit an application." msgstr "Вы должны авторизоваться, чтобы изменить приложение." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Нет такого приложения." @@ -2579,7 +2593,7 @@ msgid "Cannot normalize that email address." msgstr "Не удаётся стандартизировать этот электронный адрес" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Неверный электронный адрес." @@ -2656,19 +2670,22 @@ msgstr "Нет входящего электронного адреса." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Не удаётся обновить пользовательскую запись." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Входящий электронный адрес удалён." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Новый входящий электронный адрес добавлен." @@ -2679,7 +2696,8 @@ msgstr "Эта запись уже входит в число любимых!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Разлюбить" #. TRANS: Page title for first page of favorited notices. @@ -2920,12 +2938,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Не блокировать этого пользователя из этой группы" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Заблокировать этого пользователя из этой группы" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3256,7 +3276,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Опубликовать MicroID для моего Jabber/GTalk - адреса." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Предпочтения сохранены." @@ -3679,39 +3700,39 @@ msgstr "Сохранить" msgid "Save license settings" msgstr "Сохранить настройки лицензии" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Вы уже авторизовались." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Некорректное имя или пароль." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "Ошибка установки пользователя. Вы, вероятно, не авторизованы." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Вход" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Авторизоваться" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Запомнить меня" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "Автоматическии входить в дальнейшем. Не для общедоступных компьютеров!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Потеряли или забыли пароль?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3719,11 +3740,11 @@ msgstr "" "По причинам сохранения безопасности введите имя и пароль ещё раз, прежде чем " "изменять Ваши установки." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Войти с вашим именем участника и паролем." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3935,30 +3956,30 @@ msgid "You have not registered any applications yet." msgstr "Вы пока не зарегистрировали ни одного приложения." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Подключённые приложения" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "Следующие приложения подключены к вашей учётной записи." #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Вы не являетесь пользователем этого приложения." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, php-format msgid "Unable to revoke access for application: %s." msgstr "Не удаётся отозвать доступ для приложения: %s." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3967,14 +3988,14 @@ msgstr "" "Доступ для %1$s и ключ доступа, начинающийся на %2$s, успешно отозваны." #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "Вы не разрешили приложениям использовать вашу учётную запись." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " @@ -3983,6 +4004,16 @@ msgstr "" "Вы разработчик? [Зарегистрируйте клиентское приложение OAuth](%s) для " "использования с этим сайтом StatusNet." +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "Метод API не найден." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "Родительская запись не найдена." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Уведомление не имеет профиля." @@ -3992,6 +4023,16 @@ msgstr "Уведомление не имеет профиля." msgid "%1$s's status on %2$s" msgstr "Статус %1$s на %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Получатель не найден." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4081,17 +4122,21 @@ msgstr "Задан неверный ключ для входа." msgid "Login token expired." msgstr "Срок действия ключа для входа истёк." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Исходящие для %s — страница %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Исходящие для %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "Это список исходящих писем, в котором перечислены отправленные вами личные " @@ -4119,40 +4164,45 @@ msgstr "Старый пароль" msgid "New password" msgstr "Новый пароль" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 или больше знаков" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "Тот же пароль, что и выше" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Изменить" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Пароль должен быть длиной не менее 6 символов." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Пароли не совпадают." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Некорректный старый пароль" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Ошибка сохранения пользователя; неверное имя." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Не удаётся сохранить новый пароль." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Пароль сохранён." @@ -4477,7 +4527,7 @@ msgid "Profile information" msgstr "Информация профиля" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1-64 латинских строчных буквы или цифры, без знаков препинания и пробелов" @@ -4485,7 +4535,7 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4493,20 +4543,20 @@ msgstr "Полное имя" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Главная" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site." msgstr "Адрес вашей домашней страницы, блога или профиля на другом сайте." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4515,28 +4565,29 @@ msgstr[1] "Опишите себя и свои увлечения при пом msgstr[2] "Опишите себя и свои увлечения при помощи %d символов" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Опишите себя и свои интересы" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Биография" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Месторасположение" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Где вы находитесь, например «Город, область, страна»" @@ -4555,8 +4606,10 @@ msgstr "Теги" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Теги для самого себя (буквы, цифры, -, ., и _), разделенные запятой или " "пробелом" @@ -4568,7 +4621,8 @@ msgstr "Язык" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Предпочитаемый язык" #. TRANS: Dropdownlist label in form for profile settings. @@ -4583,14 +4637,15 @@ msgstr "В каком часовом поясе Вы обычно находит #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "Автоматически подписываться на всех, кто подписался на меня" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4610,9 +4665,9 @@ msgstr "Слишком длинный язык (максимум 50 символ #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Неверный тег: «%s»" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4855,6 +4910,12 @@ msgstr "Восстановление пароля" msgid "Password recovery requested" msgstr "Запрошено восстановление пароля" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Пароль сохранён." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4866,12 +4927,6 @@ msgstr "Неизвестное действие" msgid "6 or more characters, and do not forget it!" msgstr "6 или более символов, и не забывайте его!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "Тот же пароль, что и выше" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4923,14 +4978,8 @@ msgstr "Пароль должен быть длиной не менее 6 сим msgid "Password and confirmation do not match." msgstr "Пароль и его подтверждение не совпадают." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Не удаётся сохранить новый пароль." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Ошибка в установках пользователя." @@ -4939,73 +4988,73 @@ msgstr "Ошибка в установках пользователя." msgid "New password successfully saved. You are now logged in." msgstr "Новый пароль успешно сохранён. Вы авторизовались." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Простите, регистрация только по приглашению." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Извините, неверный пригласительный код." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Регистрация успешна!" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Регистрация" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Регистрация недопустима." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "" "Вы не можете зарегистрироваться, если Вы не подтверждаете лицензионного " "соглашения." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Такой электронный адрес уже задействован." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Неверное имя или пароль." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "С помощью этой формы вы можете создать новую учётную запись. Тогда вы " "получите возможность публиковать короткие сообщения и устанавливать связи с " "друзьями и коллегами. " -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 или больше знаков" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Email" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "Нужна только для обновлений, осведомлений и восстановления пароля." -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Полное имя, предпочтительно Ваше настоящее имя" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "Адрес твоей страницы, дневника или профиля на другом портале" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Где вы находитесь, например «Город, область, страна»" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." @@ -5013,23 +5062,23 @@ msgstr "" "Я понимаю, что содержание и данные %1$s являются частными и " "конфиденциальными." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "Авторским правом на мои тексты и файлы обладает %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "Авторские права на мои тексты и файлы остаются за мной." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Все права защищены." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5038,7 +5087,7 @@ msgstr "" "Мои тексты и файлы доступны на условиях %s, за исключением следующей личной " "информации: пароля, почтового адреса, номера мессенджера и номера телефона." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5072,7 +5121,7 @@ msgstr "" "Спасибо за то, что присоединились к нам, надеемся, что вы получите " "удовольствие от использования данного сервиса!" -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5103,7 +5152,8 @@ msgid "User nickname" msgstr "Имя пользователя." #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Имя пользователя, которому Вы хотите следовать" #: actions/remotesubscribe.php:132 @@ -5111,7 +5161,8 @@ msgid "Profile URL" msgstr "URL профиля" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "Адрес URL твоего профиля на другом подходящем сервисе микроблогинга" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5121,7 +5172,8 @@ msgid "Subscribe" msgstr "Подписаться" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "Неверный URL профиля (плохой формат)" #: actions/remotesubscribe.php:167 @@ -5320,7 +5372,7 @@ msgstr "Вы не можете снимать роли пользователе msgid "User doesn't have this role." msgstr "Пользователь не имеет этой роли." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5363,87 +5415,87 @@ msgstr "Включить отладочный вывод для сессий." msgid "Save site settings" msgstr "Сохранить настройки сайта" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Вы должны авторизоваться, чтобы просматривать приложения." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Профиль приложения" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Иконка" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Имя" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Организация" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Описание" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Статистика" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "Создано %1$s — доступ по умолчанию: %2$s — %3$d польз." -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Действия приложения" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Сбросить ключ и секретную фразу" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Удалить" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Информация о приложении" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Потребительский ключ" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Секретная фраза потребителя" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "URL ключа запроса" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "URL ключа доступа" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "URL авторизации" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5451,7 +5503,7 @@ msgstr "" "Примечание: Мы поддерживаем подписи HMAC-SHA1. Мы не поддерживаем метод " "подписи открытым текстом." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" "Вы уверены, что хотите сбросить ваш ключ потребителя и секретную фразу?" @@ -5544,16 +5596,18 @@ msgid "Group profile" msgstr "Профиль группы" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Запись" @@ -5699,7 +5753,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s с тегом %2$s" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5949,7 +6003,8 @@ msgstr "Текст уведомления сайта (максимум 255 си #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Сохранить уведомление сайта" #. TRANS: Title for SMS settings. @@ -6009,7 +6064,8 @@ msgstr "Номер телефона для СМС" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Номер телефона, без пробелов, с кодом зоны" #. TRANS: Form legend for SMS preferences form. @@ -6348,8 +6404,9 @@ msgstr "Теги %s" msgid "User profile" msgstr "Профиль пользователя" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Фото" @@ -6366,6 +6423,11 @@ msgstr "" "Теги для этого пользователя (буквы, цифры, -, ., и _), разделённые запятой " "или пробелом" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Неверный тег: «%s»" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6402,7 +6464,7 @@ msgstr "Нет ID профиля в запросе." msgid "Unsubscribed" msgstr "Отписано" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6434,8 +6496,8 @@ msgstr "" #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 -#, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +#, fuzzy, php-format +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Неверная подписка по умолчанию: «%1$s» не является пользователем." #. TRANS: Link description in user account settings menu. @@ -6495,55 +6557,71 @@ msgstr "Разрешать ли пользователям приглашать #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "Сохранить пользовательские настройки" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Авторизовать подписку" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Пожалуйста, проверьте эти подробности, чтобы быть уверенным, что вы хотите " "подписаться на записи этого пользователя. Если Вы этого не хотите делать, " "нажмите «Отказ»." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Лицензия" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Принять" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Подписаться на этого пользователя" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Отбросить" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Отвергнуть эту подписку" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Не авторизованный запрос!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Подписка авторизована" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6552,11 +6630,12 @@ msgstr "" "Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте " "о том, как авторизовать подписку. Ваш ключ подписки:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Подписка отменена" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6565,39 +6644,63 @@ msgstr "" "Подписка отвергнута, но не бы передан URL обратного вызова. Проверьте " "инструкции на сайте, чтобы полностью отказаться от подписки." -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "Смотрящий URI «%s» здесь не найден." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "Просматриваемый URI «%s» слишком длинный." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "Просматриваемый URI «%s» — локальный пользователь." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "URL профиля «%s» предназначен только для локального пользователя." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"Лицензия просматриваемого потока «%1$s» несовместима с лицензией сайта «%2$s»." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "URL аватары «%s» недействителен." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Не удаётся прочитать URL аватары «%s»" -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Неверный тип изображения для URL аватары «%s»." #. TRANS: Page title for profile design page. @@ -7816,6 +7919,11 @@ msgstr "Смена пароля не разрешена." msgid "Block" msgstr "Блокировать" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Заблокировать пользователя." + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8277,6 +8385,11 @@ msgstr "Авторизованные соединённые приложения msgid "Database error" msgstr "Ошибка базы данных" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Удалить этого пользователя" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8313,6 +8426,21 @@ msgstr "Изменение цветовой гаммы" msgid "Use defaults" msgstr "Использовать значения по умолчанию" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Восстановить оформление по умолчанию" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Восстановить значения по умолчанию" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Сохранить оформление" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8420,10 +8548,8 @@ msgid "Grant this user the \"%s\" role" msgstr "Назначить этому пользователю роль «%s»" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" -"1-64 латинских строчных буквы или цифры, без знаков препинания и пробелов" +msgstr "1-64 латинских строчных буквы или цифры, без пробелов" #: lib/groupeditform.php:156 msgid "URL of the homepage or blog of the group or topic." @@ -8434,7 +8560,7 @@ msgid "Describe the group or topic" msgstr "Опишите группу или тему" #: lib/groupeditform.php:163 -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d character or less" msgid_plural "Describe the group or topic in %d characters or less" msgstr[0] "Опишите группу или тему, используя до %d символов" @@ -9207,6 +9333,10 @@ msgstr "Ответить на эту запись" msgid "Reply" msgstr "Ответить" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Удалить эту запись" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Запись повторена" @@ -9487,6 +9617,10 @@ msgstr "Пригласить" msgid "Invite friends and colleagues to join you on %s" msgstr "Пригласите друзей и коллег стать такими же как вы участниками %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Подписаться на этого пользователя" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9774,3 +9908,15 @@ msgstr "Неверный XML, отсутствует корень XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Получение резервной копии из файла «%s»." + +#~ msgid "6 or more characters" +#~ msgstr "6 или больше знаков" + +#~ msgid "Same as password above" +#~ msgstr "Тот же пароль, что и выше" + +#~ msgid "Can't save new password." +#~ msgstr "Не удаётся сохранить новый пароль." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "Адрес твоей страницы, дневника или профиля на другом портале" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 15d455b818..e5a81630d6 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -147,7 +147,7 @@ msgstr "" #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -497,7 +497,7 @@ msgstr "" #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" #. TRANS: Client error displayed trying to direct message self (403). @@ -580,7 +580,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "" @@ -590,7 +590,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "" @@ -603,7 +603,7 @@ msgstr "" #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "" @@ -613,7 +613,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "" @@ -641,7 +641,7 @@ msgstr[1] "" #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "" @@ -796,15 +796,15 @@ msgstr "" #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -835,7 +835,7 @@ msgstr "" #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "" @@ -880,19 +880,20 @@ msgstr "" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "" @@ -1011,7 +1012,7 @@ msgstr "" #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "" #. TRANS: Client error displayed requesting a deleted status. @@ -1185,25 +1186,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, php-format msgid "No content for notice %d." msgstr "" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1358,7 +1360,7 @@ msgid "Not a member." msgstr "" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 msgid "Cannot delete someone else's membership." msgstr "" @@ -1461,9 +1463,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "" @@ -1518,9 +1522,9 @@ msgstr "" msgid "No file uploaded." msgstr "" -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +msgid "Pick a square area of the image to be your avatar." msgstr "" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1578,7 +1582,7 @@ msgstr "" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1616,7 +1620,7 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +msgid "Do not block this user." msgstr "" #. TRANS: Button label on the user block form. @@ -1633,9 +1637,8 @@ msgid "Yes" msgstr "" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +msgid "Block this user." msgstr "" #. TRANS: Server error displayed when blocking a user fails. @@ -1794,7 +1797,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "" @@ -1823,13 +1826,13 @@ msgstr "" #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "" @@ -1850,12 +1853,12 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +msgid "Do not delete this application." msgstr "" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +msgid "Delete this application." msgstr "" #. TRANS: Client error when trying to delete group while not logged in. @@ -1906,12 +1909,12 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +msgid "Do not delete this group." msgstr "" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +msgid "Delete this group." msgstr "" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -1952,12 +1955,12 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +msgid "Do not delete this notice." msgstr "" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +msgid "Delete this notice." msgstr "" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -1990,13 +1993,12 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +msgid "Delete this user." msgstr "" #. TRANS: Message used as title for design settings for the site. @@ -2158,21 +2160,18 @@ msgid "Use defaults" msgstr "" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +msgid "Restore default designs." msgstr "" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +msgid "Reset back to default." msgstr "" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +msgid "Save design." msgstr "" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2204,7 +2203,7 @@ msgid "You must be logged in to edit an application." msgstr "" #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "" @@ -2480,7 +2479,7 @@ msgid "Cannot normalize that email address." msgstr "" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "" @@ -2552,18 +2551,21 @@ msgstr "" #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 msgid "Could not update user record." msgstr "" #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "" #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "" @@ -2574,7 +2576,7 @@ msgstr "" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +msgid "Disfavor favorite." msgstr "" #. TRANS: Page title for first page of favorited notices. @@ -2806,12 +2808,12 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +msgid "Do not block this user from this group." msgstr "" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +msgid "Block this user from this group." msgstr "" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3111,7 +3113,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "" #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "" @@ -3485,49 +3488,49 @@ msgstr "" msgid "Save license settings" msgstr "" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "" -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "" -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "" -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." msgstr "" -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "" -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3726,30 +3729,30 @@ msgid "You have not registered any applications yet." msgstr "" #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "" #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, php-format msgid "Unable to revoke access for application: %s." msgstr "" #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3757,20 +3760,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "" #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, php-format +msgid "\"%s\" not found." +msgstr "" + +#: actions/oembed.php:76 +#, php-format +msgid "Notice %s not found." +msgstr "" + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "" @@ -3780,6 +3793,16 @@ msgstr "" msgid "%1$s's status on %2$s" msgstr "" +#: actions/oembed.php:95 +#, php-format +msgid "Attachment %s not found." +msgstr "" + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -3869,17 +3892,21 @@ msgstr "" msgid "Login token expired." msgstr "" -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" @@ -3905,40 +3932,42 @@ msgstr "" msgid "New password" msgstr "" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +msgid "6 or more characters." msgstr "" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +msgid "Same as password above." msgstr "" #: actions/passwordsettings.php:117 msgid "Change" msgstr "" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "" -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "" -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "" -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +msgid "Cannot save new password." msgstr "" -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "" @@ -4259,14 +4288,14 @@ msgid "Profile information" msgstr "" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4274,20 +4303,20 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site." msgstr "" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4295,28 +4324,29 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" @@ -4336,7 +4366,8 @@ msgstr "" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" #. TRANS: Dropdownlist label in form for profile settings. @@ -4346,7 +4377,7 @@ msgstr "" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +msgid "Preferred language." msgstr "" #. TRANS: Dropdownlist label in form for profile settings. @@ -4362,13 +4393,13 @@ msgstr "" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4387,9 +4418,9 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 +#: actions/profilesettings.php:291 #, php-format -msgid "Invalid tag: \"%s\"" +msgid "Invalid tag: \"%s\"." msgstr "" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4614,6 +4645,11 @@ msgstr "" msgid "Password recovery requested" msgstr "" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +msgid "Password saved" +msgstr "" + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4624,11 +4660,6 @@ msgstr "" msgid "6 or more characters, and do not forget it!" msgstr "" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -msgid "Same as password above." -msgstr "" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4678,13 +4709,8 @@ msgstr "" msgid "Password and confirmation do not match." msgstr "" -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -msgid "Cannot save new password." -msgstr "" - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "" @@ -4693,96 +4719,92 @@ msgstr "" msgid "New password successfully saved. You are now logged in." msgstr "" -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "" -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "" -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "" -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +msgid "You cannot register if you don't agree to the license." msgstr "" -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "" -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "" -#: actions/register.php:351 +#: actions/register.php:340 msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/register.php:437 -msgid "6 or more characters." +"link up to friends and colleagues." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +msgid "Used only for updates, announcements, and password recovery." msgstr "" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +msgid "Longer name, preferably your \"real\" name." msgstr "" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" +#: actions/register.php:471 +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4801,7 +4823,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -4828,7 +4850,7 @@ msgid "User nickname" msgstr "" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +msgid "Nickname of the user you want to follow." msgstr "" #: actions/remotesubscribe.php:132 @@ -4836,7 +4858,7 @@ msgid "Profile URL" msgstr "" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -4846,7 +4868,7 @@ msgid "Subscribe" msgstr "" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +msgid "Invalid profile URL (bad format)." msgstr "" #: actions/remotesubscribe.php:167 @@ -5030,7 +5052,7 @@ msgstr "" msgid "User doesn't have this role." msgstr "" -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "" @@ -5072,93 +5094,93 @@ msgstr "" msgid "Save site settings" msgstr "" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "" -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" @@ -5243,16 +5265,18 @@ msgid "Group profile" msgstr "" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "" @@ -5388,7 +5412,7 @@ msgid "%1$s tagged %2$s" msgstr "" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5620,7 +5644,7 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +msgid "Save site notice." msgstr "" #. TRANS: Title for SMS settings. @@ -5678,7 +5702,7 @@ msgstr "" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +msgid "Phone number, no punctuation or spaces, with area code." msgstr "" #. TRANS: Form legend for SMS preferences form. @@ -5997,8 +6021,9 @@ msgstr "" msgid "User profile" msgstr "" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "" @@ -6013,6 +6038,11 @@ msgid "" "separated" msgstr "" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6046,7 +6076,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6077,7 +6107,7 @@ msgstr "" #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" #. TRANS: Link description in user account settings menu. @@ -6137,102 +6167,136 @@ msgstr "" #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +msgid "Save user settings." msgstr "" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +msgctxt "BUTTON" msgid "Accept" msgstr "" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +msgid "Subscribe to this user." msgstr "" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +msgctxt "BUTTON" msgid "Reject" msgstr "" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +msgid "Reject this subscription." msgstr "" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " "subscription." msgstr "" -#: actions/userauthorization.php:303 +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 #, php-format -msgid "Listener URI ‘%s’ not found here." +msgid "Listener URI \"%s\" not found here." msgstr "" -#: actions/userauthorization.php:308 +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 #, php-format -msgid "Listenee URI ‘%s’ is too long." +msgid "Listenee URI \"%s\" is too long." msgstr "" -#: actions/userauthorization.php:314 +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 #, php-format -msgid "Listenee URI ‘%s’ is a local user." +msgid "Listenee URI \"%s\" is a local user." msgstr "" -#: actions/userauthorization.php:329 +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 #, php-format -msgid "Profile URL ‘%s’ is for a local user." +msgid "Profile URL \"%s\" is for a local user." +msgstr "" + +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" -#: actions/userauthorization.php:345 +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 #, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "Avatar URL \"%s\" is not valid." msgstr "" -#: actions/userauthorization.php:350 +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 #, php-format -msgid "Can’t read avatar URL ‘%s’." +msgid "Cannot read avatar URL \"%s\"." msgstr "" -#: actions/userauthorization.php:355 +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 #, php-format -msgid "Wrong image type for avatar URL ‘%s’." +msgid "Wrong image type for avatar URL \"%s\"." msgstr "" #. TRANS: Page title for profile design page. @@ -7400,6 +7464,11 @@ msgstr "" msgid "Block" msgstr "" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -7806,6 +7875,11 @@ msgstr "" msgid "Database error" msgstr "" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -7840,6 +7914,21 @@ msgstr "" msgid "Use defaults" msgstr "" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8604,6 +8693,10 @@ msgstr "" msgid "Reply" msgstr "" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "" @@ -8879,6 +8972,10 @@ msgstr "" msgid "Invite friends and colleagues to join you on %s" msgstr "" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index b5f95764bf..3ef9e7fe9b 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:42+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:46+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -155,7 +155,7 @@ msgstr "Ingen sådan sida" #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -515,7 +515,8 @@ msgstr "Mottagare hittades inte." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "Kan inte skicka direktmeddelanden till användare som inte är din vän." #. TRANS: Client error displayed trying to direct message self (403). @@ -601,7 +602,7 @@ msgstr "Kunde inte hitta målanvändare." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Smeknamnet används redan. Försök med ett annat." @@ -611,7 +612,7 @@ msgstr "Smeknamnet används redan. Försök med ett annat." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Inte ett giltigt smeknamn." @@ -624,7 +625,7 @@ msgstr "Inte ett giltigt smeknamn." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "Hemsida är inte en giltig webbadress." @@ -634,7 +635,7 @@ msgstr "Hemsida är inte en giltig webbadress." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "Fullständigt namn är för långt (max 255 tecken)." @@ -662,7 +663,7 @@ msgstr[1] "Beskrivning är för lång (max %d tecken)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "Beskrivning av plats är för lång (max 255 tecken)." @@ -818,15 +819,15 @@ msgstr "Begäran-token är redan auktoriserad." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "Det var ett problem med din sessions-token. Var vänlig försök igen." @@ -858,7 +859,7 @@ msgstr "Databasfel vid infogning av OAuth-applikationsanvändare." #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Oväntat inskick av formulär." @@ -909,19 +910,20 @@ msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Smeknamn" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Lösenord" @@ -1044,7 +1046,7 @@ msgstr "API-metod hittades inte." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "Format som inte stödjs." #. TRANS: Client error displayed requesting a deleted status. @@ -1221,25 +1223,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Hitta innehåll i notiser" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." @@ -1406,7 +1409,7 @@ msgid "Not a member." msgstr "Alla medlemmar" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Kunde inte spara prenumeration." @@ -1512,9 +1515,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Användare utan matchande profil." @@ -1569,9 +1574,10 @@ msgstr "Beskär" msgid "No file uploaded." msgstr "Ingen fil laddades upp." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Välj ett kvadratiskt område i bilden som din avatar" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1631,7 +1637,7 @@ msgstr "Bakgrund" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1672,7 +1678,8 @@ msgstr "Nej" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Blockera inte denna användare" #. TRANS: Button label on the user block form. @@ -1689,9 +1696,9 @@ msgid "Yes" msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Blockera denna användare" #. TRANS: Server error displayed when blocking a user fails. @@ -1855,7 +1862,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Bekräfta" @@ -1885,13 +1892,13 @@ msgstr "Applikation hittades inte." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Du är inte ägaren av denna applikation." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Det var ett problem med din sessions-token." @@ -1915,12 +1922,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Ta inte bort denna applikation" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Ta bort denna applikation" #. TRANS: Client error when trying to delete group while not logged in. @@ -1974,12 +1983,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "Ta inte bort denna grupp" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "Ta bort denna grupp" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2022,12 +2033,14 @@ msgstr "Är du säker på att du vill ta bort denna notis?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Ta inte bort denna notis" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Ta bort denna notis" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2064,13 +2077,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "Ta inte bort denna grupp" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Ta bort denna användare" #. TRANS: Message used as title for design settings for the site. @@ -2236,21 +2249,21 @@ msgid "Use defaults" msgstr "Använd standardvärden" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Återställ standardutseende" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Återställ till standardvärde" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Spara utseende" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2282,7 +2295,7 @@ msgid "You must be logged in to edit an application." msgstr "Du måste vara inloggad för att redigera en applikation." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Ingen sådan applikation." @@ -2562,7 +2575,7 @@ msgid "Cannot normalize that email address." msgstr "Kan inte normalisera den e-postadressen" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Inte en giltig e-postadress." @@ -2639,19 +2652,22 @@ msgstr "Ingen inkommande e-postadress." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Kunde inte uppdatera användaruppgift." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Inkommande e-postadress borttagen." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Ny inkommande e-postadress tillagd." @@ -2662,7 +2678,8 @@ msgstr "Denna notis är redan en favorit!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Ta bort märkning som favorit" #. TRANS: Page title for first page of favorited notices. @@ -2903,12 +2920,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Blockera inte denna användare från denna grupp" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Blockera denna användare från denna grupp" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3238,7 +3257,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Publicera ett MicroID för min Jabber/GTalk-adress." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Inställningar sparade." @@ -3656,39 +3676,39 @@ msgstr "Spara" msgid "Save license settings" msgstr "Spara licensinsällningar" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Redan inloggad." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Felaktigt användarnamn eller lösenord." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "Fel vid inställning av användare. Du har sannolikt inte tillstånd." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Logga in" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Logga in på webbplatsen" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Kom ihåg mig" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "Logga in automatiskt i framtiden; inte för delade datorer!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Tappat bort eller glömt ditt lösenord?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3696,11 +3716,11 @@ msgstr "" "Av säkerhetsskäl, var vänlig och skriv in ditt användarnamn och lösenord " "igen innan du ändrar dina inställningar." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Logga in med ditt användarnamn och lösenord." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3914,30 +3934,30 @@ msgid "You have not registered any applications yet." msgstr "Du har inte registrerat några applikationer än." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Anslutna applikationer" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Du är inte en användare av den applikationen." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, php-format msgid "Unable to revoke access for application: %s." msgstr "Kunde inte återkalla åtkomst för applikation: %s." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3945,20 +3965,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "Du har inte tillåtit några applikationer att använda ditt konto." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "API-metod hittades inte." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "API-metod hittades inte." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Notisen har ingen profil." @@ -3968,6 +3998,16 @@ msgstr "Notisen har ingen profil." msgid "%1$s's status on %2$s" msgstr "%1$ss status den %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Mottagare hittades inte." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4058,17 +4098,21 @@ msgstr "Ogiltig inloggnings-token angiven." msgid "Login token expired." msgstr "Inloggnings-token förfallen." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Utkorg för %1$s - sida %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Utkorg för %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "Detta är din utkorg som innehåller privata meddelanden du har skickat." @@ -4094,40 +4138,45 @@ msgstr "Gammalt lösenord" msgid "New password" msgstr "Nytt lösenord" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "Minst 6 tecken" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "Samma som lösenordet ovan" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Ändra" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Lösenordet måste vara minst 6 tecken." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Lösenorden matchar inte." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Felaktigt gammalt lösenord" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Fel vid sparande av användare; ogiltig." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Kan inte spara nytt lösenord." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Lösenord sparat." @@ -4463,7 +4512,7 @@ msgid "Profile information" msgstr "Profilinformation" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag" @@ -4471,7 +4520,7 @@ msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4479,13 +4528,13 @@ msgstr "Fullständigt namn" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Hemsida" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "URL till din hemsida, blogg eller profil på en annan webbplats." @@ -4493,7 +4542,7 @@ msgstr "URL till din hemsida, blogg eller profil på en annan webbplats." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4501,28 +4550,29 @@ msgstr[0] "Beskriv dig själv och dina intressen med högst 140 tecken" msgstr[1] "Beskriv dig själv och dina intressen med högst 140 tecken" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Beskriv dig själv och dina intressen" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Biografi" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Plats" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Var du håller till, såsom \"Stad, Län, Land\"" @@ -4541,8 +4591,10 @@ msgstr "Taggar" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Taggar för dig själv (bokstäver, nummer, -, ., och _), separerade med " "kommatecken eller mellanslag" @@ -4554,7 +4606,8 @@ msgstr "Språk" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Föredraget språk" #. TRANS: Dropdownlist label in form for profile settings. @@ -4569,8 +4622,9 @@ msgstr "I vilken tidszon befinner du dig normalt?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Prenumerera automatiskt på den som prenumererar på mig (bäst för icke-" "människa) " @@ -4578,7 +4632,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4598,9 +4652,9 @@ msgstr "Språknamn är för långt (max 50 tecken)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Ogiltig tagg: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4845,6 +4899,12 @@ msgstr "Återskapa lösenord" msgid "Password recovery requested" msgstr "Återskapande av lösenord begärd" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Lösenord sparat." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4856,12 +4916,6 @@ msgstr "Okänd funktion" msgid "6 or more characters, and do not forget it!" msgstr "Minst 6 tecken, och glöm inte bort det!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "Samma som lösenordet ovan" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4914,14 +4968,8 @@ msgstr "Lösenordet måste vara minst 6 tecken." msgid "Password and confirmation do not match." msgstr "Lösenord och bekräftelse matchar inte." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Kan inte spara nytt lösenord." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Fel uppstog i användarens inställning" @@ -4930,95 +4978,95 @@ msgstr "Fel uppstog i användarens inställning" msgid "New password successfully saved. You are now logged in." msgstr "Nya lösenordet sparat. Du är nu inloggad." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "Tyvärr, bara inbjudna personer kan registrera sig." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Tyvärr, ogiltig inbjudningskod." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Registreringen genomförd" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Registrera" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Registrering inte tillåten." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Du kan inte registrera dig om du inte godkänner licensen." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "E-postadressen finns redan." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Ogiltigt användarnamn eller lösenord." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "Med detta formulär kan du skapa ett nytt konto. Du kan sedan posta notiser " "och ansluta till vänner och kollegor. " -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "Minst 6 tecken" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-post" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "" "Används endast för uppdateringar, tillkännagivanden och återskapande av " "lösenord" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Längre namn, förslagsvis ditt \"verkliga\" namn" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL till din hemsida, blogg eller profil på en annan webbplats." +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Var du håller till, såsom \"Stad, Län, Land\"" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" "Jag förstår att innehåll och data av %1$s är privata och konfidentiella." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "Upphovsrätten till min text och mina filer innehas av %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "Upphovsrätten till min text och mina filer är fortsatt min." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Alla rättigheter reserverade." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5027,7 +5075,7 @@ msgstr "" "Mina texter och filer är tillgängliga under %s med undantag av den här " "privata datan: lösenord, e-postadress, IM-adress, telefonnummer." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5060,7 +5108,7 @@ msgstr "" "Tack för att du anmält dig och vi hoppas att du kommer tycka om att använda " "denna tjänst." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5093,7 +5141,8 @@ msgid "User nickname" msgstr "Användarens smeknamn" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Smeknamnet på användaren du vill följa" #: actions/remotesubscribe.php:132 @@ -5101,7 +5150,8 @@ msgid "Profile URL" msgstr "Profil-URL" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "URL till din profil på en annan kompatibel mikrobloggtjänst" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5111,7 +5161,8 @@ msgid "Subscribe" msgstr "Prenumerera" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "Ogiltig profil-URL (dåligt format)" #: actions/remotesubscribe.php:167 @@ -5312,7 +5363,7 @@ msgstr "Du kan inte återkalla användarroller på denna webbplats." msgid "User doesn't have this role." msgstr "Användare har inte denna roll." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5354,87 +5405,87 @@ msgstr "Sätt på felsökningsutdata för sessioner." msgid "Save site settings" msgstr "Spara webbplatsinställningar" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Du måste vara inloggad för att se en applikation." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Applikationsprofil" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Ikon" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Namn" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisation" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Beskrivning" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Statistik" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "Skapad av %1$s - %2$s standardåtkomst - %3$d användare" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Åtgärder för applikation" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Återställ nyckel & hemlighet" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Ta bort" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Information om applikation" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Nyckel för konsument" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Hemlighet för konsument" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "URL för begäran-token" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "URL för åtkomst-token" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "Tillåt URL" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5442,7 +5493,7 @@ msgstr "" "Notera: Vi stöjder HMAC-SHA1-signaturer. Vi stödjer inte metoden med " "klartextsignatur." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" "Är du säker på att du vill återställa din konsumentnyckel och -hemlighet?" @@ -5535,16 +5586,18 @@ msgid "Group profile" msgstr "Grupprofil" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Notis" @@ -5689,7 +5742,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s taggade %2$d" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5937,7 +5990,8 @@ msgstr "Text för webbplatsnotis (max 255 tecken; HTML ok)" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Spara webbplatsnotis" #. TRANS: Title for SMS settings. @@ -5995,7 +6049,8 @@ msgstr "Telefonnummer för SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Telefonnummer, inga punkter eller mellanslag, med landskod" #. TRANS: Form legend for SMS preferences form. @@ -6333,8 +6388,9 @@ msgstr "Tagg %s" msgid "User profile" msgstr "Användarprofil" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Foto" @@ -6351,6 +6407,11 @@ msgstr "" "Taggar för denna användare (bokstäver, nummer, -, ., och _), separerade med " "kommatecken eller mellanslag" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Ogiltig tagg: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6387,7 +6448,7 @@ msgstr "Ingen profil-ID i begäran." msgid "Unsubscribed" msgstr "Prenumeration avslutad" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6421,7 +6482,7 @@ msgstr "Ogiltig välkomsttext. Maximal längd är 255 tecken." #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, fuzzy, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Ogiltig standardprenumeration: '%1$s' är inte användare." #. TRANS: Link description in user account settings menu. @@ -6484,55 +6545,71 @@ msgstr "Hurvida användare skall tillåtas bjuda in nya användare." #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" -msgstr "" +#, fuzzy +msgid "Save user settings." +msgstr "Spara webbplatsinställningar" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Godkänn prenumeration" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Vänligen kontrollera dessa uppgifter för att försäkra dig om att du vill " "prenumerera på den här användarens notiser. Om du inte bett att prenumerera " "på någons meddelanden, klicka på \"Avvisa\"." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Licens" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Acceptera" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Prenumerera på denna användare" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Avvisa" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Avvisa denna prenumeration" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Ingen begäran om godkännande!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Prenumeration godkänd" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6542,11 +6619,12 @@ msgstr "" "med webbplatsens instruktioner hur du bekräftar en prenumeration. Din " "prenumerations-token är:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Prenumeration avvisad" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6556,39 +6634,64 @@ msgstr "" "webbplatsens instruktioner för detaljer om hur du fullständingt avvisar " "prenumerationen." -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "URI för lyssnare '%s' hittades inte här." -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "Lyssnar-URI '%s' är för lång." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "Lyssnar-URI '%s' är en lokal användare." -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "Profil-URL ‘%s’ är för en lokal användare." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" +"Licensen för lyssnarströmmen '%1$s' är inte förenlig med webbplatslicensen '%" +"2$s'." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "Avatar-URL ‘%s’ är inte giltig." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Kan inte läsa avatar-URL '%s'." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Fel bildtyp för avatar-URL '%s'." #. TRANS: Page title for profile design page. @@ -7797,6 +7900,11 @@ msgstr "Byte av lösenord är inte tillåtet." msgid "Block" msgstr "Blockera" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Blockera denna användare" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8249,6 +8357,11 @@ msgstr "Tillåt anslutna applikationer" msgid "Database error" msgstr "Databasfel" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Ta bort denna användare" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8285,6 +8398,21 @@ msgstr "Byt färger" msgid "Use defaults" msgstr "Använd standardvärden" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Återställ standardutseende" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Återställ till standardvärde" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Spara utseende" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8392,7 +8520,6 @@ msgid "Grant this user the \"%s\" role" msgstr "Bevilja denna användare \"%s\"-rollen" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag" @@ -9168,6 +9295,10 @@ msgstr "Svara på denna notis" msgid "Reply" msgstr "Svara" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Ta bort denna notis" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Notis upprepad" @@ -9449,6 +9580,10 @@ msgstr "Bjud in" msgid "Invite friends and colleagues to join you on %s" msgstr "Bjud in vänner och kollegor att gå med dig på %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Prenumerera på denna användare" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9721,3 +9856,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "Minst 6 tecken" + +#~ msgid "Same as password above" +#~ msgstr "Samma som lösenordet ovan" + +#~ msgid "Can't save new password." +#~ msgstr "Kan inte spara nytt lösenord." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "URL till din hemsida, blogg eller profil på en annan webbplats." diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 25f7457be0..39eff5867e 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:44+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:47+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -152,7 +152,7 @@ msgstr "అటువంటి పేజీ లేదు." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -508,7 +508,8 @@ msgstr "అందుకోవాల్సిన వాడుకరి కనబ #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "మీ స్నేహితులు కాని వాడుకరులకి నేరు సందేశాలు పంపించలేరు." #. TRANS: Client error displayed trying to direct message self (403). @@ -592,7 +593,7 @@ msgstr "లక్ష్యిత వాడుకరిని కనుగొన #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." @@ -602,7 +603,7 @@ msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్ #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "సరైన పేరు కాదు." @@ -615,7 +616,7 @@ msgstr "సరైన పేరు కాదు." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "హోమ్ పేజీ URL సరైనది కాదు." @@ -625,7 +626,7 @@ msgstr "హోమ్ పేజీ URL సరైనది కాదు." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 #, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "పూర్తి పేరు చాలా పెద్దగా ఉంది (గరిష్ఠంగా 255 అక్షరాలు)." @@ -654,7 +655,7 @@ msgstr[1] "వివరణ చాలా పెద్దగా ఉంది (%d #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 #, fuzzy msgid "Location is too long (maximum 255 characters)." msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)." @@ -813,15 +814,15 @@ msgstr "మీకు అధీకరణ లేదు." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -853,7 +854,7 @@ msgstr "అవతారాన్ని పెట్టడంలో పొరప #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "" @@ -898,19 +899,20 @@ msgstr "ఖాతా" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "పేరు" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "సంకేతపదం" @@ -1032,7 +1034,7 @@ msgstr "నిర్ధారణ సంకేతం కనబడలేదు." #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 #, fuzzy, php-format -msgid "Unsupported format: %s" +msgid "Unsupported format: %s." msgstr "%s కి నేరు సందేశాలు" #. TRANS: Client error displayed requesting a deleted status. @@ -1208,25 +1210,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." @@ -1394,7 +1397,7 @@ msgid "Not a member." msgstr "సభ్యులు కాదు." #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "కొత్త చందాని చేర్చలేకపోయాం." @@ -1499,9 +1502,11 @@ msgstr "మీ వ్యక్తిగత అవతారాన్ని మీ #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "వాడుకరికి ప్రొఫైలు లేదు." @@ -1557,9 +1562,10 @@ msgstr "కత్తిరించు" msgid "No file uploaded." msgstr "ఏ దస్త్రమూ ఎక్కింపబడలేదు." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "మీ అవతారానికి గానూ ఈ చిత్రం నుండి ఒక చతురస్రపు ప్రదేశాన్ని ఎంచుకోండి" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1619,7 +1625,7 @@ msgstr "నేపథ్యం" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1659,7 +1665,8 @@ msgstr "కాదు" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "ఈ వాడుకరిని నిరోధించకు" #. TRANS: Button label on the user block form. @@ -1676,9 +1683,9 @@ msgid "Yes" msgstr "అవును" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "ఈ వాడుకరిని నిరోధించు" #. TRANS: Server error displayed when blocking a user fails. @@ -1843,7 +1850,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "నిర్థారించు" @@ -1873,13 +1880,13 @@ msgstr "ఉపకరణం కనబడలేదు." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "మీరు ఈ ఉపకరణం యొక్క యజమాని కాదు." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "" @@ -1902,12 +1909,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "ఈ ఉపకరణాన్ని తొలగించకు" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "ఈ ఉపకరణాన్ని తొలగించు" #. TRANS: Client error when trying to delete group while not logged in. @@ -1961,12 +1970,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "ఈ గుంపును తొలగించకు" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "ఈ గుంపుని తొలగించు" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2007,12 +2018,14 @@ msgstr "మీరు నిజంగానే ఈ నోటీసుని త #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "ఈ నోటీసుని తొలగించకు" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "ఈ నోటీసుని తొలగించు" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2049,13 +2062,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "ఈ గుంపును తొలగించకు" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "ఈ వాడుకరిని తొలగించు" #. TRANS: Message used as title for design settings for the site. @@ -2222,23 +2235,21 @@ msgid "Use defaults" msgstr "అప్రమేయాలని ఉపయోగించు" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 +#: actions/designadminpanel.php:720 #, fuzzy -msgid "Restore default designs" +msgid "Restore default designs." msgstr "అప్రమేయాలని ఉపయోగించు" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 +#: actions/designadminpanel.php:728 #, fuzzy -msgid "Reset back to default" +msgid "Reset back to default." msgstr "అప్రమేయాలని ఉపయోగించు" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "రూపురేఖలని భద్రపరచు" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2270,7 +2281,7 @@ msgid "You must be logged in to edit an application." msgstr "ఉపకరణాలని మార్చడానికి మీరు ప్రవేశించి ఉండాలి." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "అటువంటి ఉపకరణం లేదు." @@ -2557,7 +2568,7 @@ msgid "Cannot normalize that email address." msgstr "ప్రస్తుత నిర్ధారిత ఈమెయిలు చిరునామా." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" @@ -2635,20 +2646,23 @@ msgstr "ఈమెయిలు చిరునామా లేదు." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 #, fuzzy msgid "Incoming email address removed." msgstr "ఆ ఈమెయిలు చిరునామాని తొలగించాం." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 #, fuzzy msgid "New incoming email address added." msgstr "ఈమెయిలు చిరునామా లేదు." @@ -2661,7 +2675,7 @@ msgstr "ఈ నోటీసు ఇప్పటికే మీ ఇష్టా #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 #, fuzzy -msgid "Disfavor favorite" +msgid "Disfavor favorite." msgstr "ఇష్టాంశాలకు చేర్చు" #. TRANS: Page title for first page of favorited notices. @@ -2898,12 +2912,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "ఈ వాడుకరిని ఈ గుంపు నుండి నిరోధించకు" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "ఈ గుంపునుండి ఈ వాడుకరిని నిరోధించు" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3219,7 +3235,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "ప్రస్తుతం నిర్ధారించిన Jabber/GTalk చిరునామా" #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "అభిరుచులు భద్రమయ్యాయి." @@ -3625,50 +3642,50 @@ msgstr "భద్రపరచు" msgid "Save license settings" msgstr "లైసెన్సు అమరికలను భద్రపరచు" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "ఇప్పటికే లోనికి ప్రవేశించారు." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "వాడుకరిని అమర్చడంలో పొరపాటు. బహుశా మీకు అధీకరణ లేకపోవచ్చు." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "ప్రవేశించండి" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "సైటు లోనికి ప్రవేశించు" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "నన్ను గుర్తుంచుకో" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "భవిష్యత్తులో ఆటోమెటిగ్గా లోనికి ప్రవేశించు; బయటి కంప్యూర్ల కొరకు కాదు!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "మీ సంకేతపదం మర్చిపోయారా?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." msgstr "" "భద్రతా కారణాల దృష్ట్యా, అమరికలు మార్చే ముందు మీ వాడుకరి పేరుని మరియు సంకేతపదాన్ని మరోసారి ఇవ్వండి." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "మీ వాడుకరిపేరు మరియు సంకేతపదాలతో ప్రవేశించండి." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3877,30 +3894,30 @@ msgid "You have not registered any applications yet." msgstr "మీరు ఇంకా ఏ ఉపకరణాన్నీ నమోదు చేసుకోలేదు." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "సంధానిత ఉపకరణాలు" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "మీరు ఆ ఉపకరణం యొక్క వాడుకరి కాదు." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "మీ ఉపకరణాన్ని మార్చడానికి ఈ ఫారాన్ని ఉపయోగించండి." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3908,20 +3925,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "మీ ఖాతాని ఉపయోగించుకోడానికి మీరు ఏ ఉపకరణాన్నీ అధీకరించలేదు." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "వాడుకరి దొరకలేదు." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "నిర్ధారణ సంకేతం కనబడలేదు." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "నోటీసుకి ప్రొఫైలు లేదు." @@ -3931,6 +3958,16 @@ msgstr "నోటీసుకి ప్రొఫైలు లేదు." msgid "%1$s's status on %2$s" msgstr "%2$sలో %1$s యొక్క స్థితి" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "అందుకోవాల్సిన వాడుకరి కనబడలేదు." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, fuzzy, php-format @@ -4025,17 +4062,21 @@ msgstr "సందేశపు విషయం సరైనది కాదు" msgid "Login token expired." msgstr "సైటు లోనికి ప్రవేశించు" -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, fuzzy, php-format msgid "Outbox for %1$s - page %2$d" msgstr "%1$sకి వచ్చినవి - %2$dవ పేజీ" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, fuzzy, php-format msgid "Outbox for %s" msgstr "%sకి వచ్చినవి" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "ఇవి మీరు పంపివున్న అంతరంగిక సందేశాలు." @@ -4061,40 +4102,45 @@ msgstr "పాత సంకేతపదం" msgid "New password" msgstr "కొత్త సంకేతపదం" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "పై సంకేతపదం వలెనే" #: actions/passwordsettings.php:117 msgid "Change" msgstr "మార్చు" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "సంకేతపదం తప్పనిసరిగా 6 లేదా అంతకంటే ఎక్కువ అక్షరాలుండాలి." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "సంకేతపదాలు సరిపోలలేదు." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "పాత సంకేతపదం తప్పు" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు: సరికాదు." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "కొత్త సంకేతపదాన్ని భద్రపరచలేము." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "సంకేతపదం భద్రమయ్యింది." @@ -4435,7 +4481,7 @@ msgid "Profile information" msgstr "ప్రొఫైలు సమాచారం" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప" @@ -4443,7 +4489,7 @@ msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అ #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4451,13 +4497,13 @@ msgstr "పూర్తి పేరు" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "హోమ్ పేజీ" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" @@ -4465,7 +4511,7 @@ msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వ #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4473,28 +4519,29 @@ msgstr[0] "మీ గురించి మరియు మీ ఆసక్త msgstr[1] "మీ గురించి మరియు మీ ఆసక్తుల గురించి %d అక్షరాల్లో చెప్పండి" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి చెప్పండి" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "స్వపరిచయం" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "ప్రాంతం" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"" @@ -4514,7 +4561,8 @@ msgstr "ట్యాగులు" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" #. TRANS: Dropdownlist label in form for profile settings. @@ -4524,7 +4572,8 @@ msgstr "భాష" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "ప్రాథాన్యతా భాష" #. TRANS: Dropdownlist label in form for profile settings. @@ -4539,14 +4588,15 @@ msgstr "మీరు సామాన్యంగా ఉండే కాలమం #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." +msgstr "ఉపయోగించాల్సిన యాంత్రిక కుదింపు సేవ." #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4566,9 +4616,9 @@ msgstr "భాష మరీ పెద్దగా ఉంది (50 అక్ష #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "తప్పుడు మారుపేరు: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4813,6 +4863,12 @@ msgstr "కొత్త సంకేతపదం" msgid "Password recovery requested" msgstr "" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "సంకేతపదం భద్రమయ్యింది." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4824,12 +4880,6 @@ msgstr "తెలియని చర్య" msgid "6 or more characters, and do not forget it!" msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు, మర్చిపోకండి!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "పై సంకేతపదం వలెనే" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4880,14 +4930,8 @@ msgstr "సంకేతపదం 6 లేదా అంతకంటే ఎక్ msgid "Password and confirmation do not match." msgstr "సంకేతపదం మరియు నిర్ధారణ సరిపోలేదు." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "కొత్త సంకేతపదాన్ని భద్రపరచలేము." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 #, fuzzy msgid "Error setting user." msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు: సరికాదు." @@ -4897,90 +4941,89 @@ msgstr "వాడుకరిని భద్రపరచడంలో పొర msgid "New password successfully saved. You are now logged in." msgstr "మీ కొత్త సంకేతపదం భద్రమైంది. మీరు ఇప్పుడు లోనికి ప్రవేశించారు." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "క్షమించండి, ఆహ్వానితులు మాత్రమే నమోదుకాగలరు." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "క్షమించండి, తప్పు ఆహ్వాన సంకేతం." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "నమోదు విజయవంతం" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "నమోదు" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "నమోదు అనుమతించబడదు." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "ఈ లైసెన్సుకి అంగీకరించకపోతే మీరు నమోదుచేసుకోలేరు." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "ఈమెయిల్ చిరునామా ఇప్పటికే ఉంది." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు." -#: actions/register.php:351 +#: actions/register.php:340 msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "ఈమెయిల్" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "తాజా విశేషాలు, ప్రకటనలు, మరియు సంకేతపదం పోయినప్పుడు మాత్రమే ఉపయోగిస్తాం." -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "పొడుగాటి పేరు, మీ \"అసలు\" పేరైతే మంచిది" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "సర్వహక్కులూ సురక్షితం." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4989,7 +5032,7 @@ msgstr "" "నా పాఠ్యం మరియు దస్త్రాలు %s క్రింద లభ్యం, ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM " "చిరునామా, మరియు ఫోన్ నంబర్." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5020,7 +5063,7 @@ msgstr "" "\n" "నమోదుచేసుకున్నందుకు కృతజ్ఞతలు మరియు ఈ సేవని ఉపయోగిస్తూ మీరు ఆనందిస్తారని మేం ఆశిస్తున్నాం." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5052,7 +5095,8 @@ msgid "User nickname" msgstr "వాడుకరి పేరు" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "మీరు అనుసరించాలనుకుంటున్న వాడుకరి యొక్క ముద్దుపేరు" #: actions/remotesubscribe.php:132 @@ -5060,7 +5104,7 @@ msgid "Profile URL" msgstr "ప్రొఫైలు URL" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5070,7 +5114,8 @@ msgid "Subscribe" msgstr "చందాచేరు" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "ప్రొపైల్ URL తప్పు (చెడు ఫార్మాట్)" #: actions/remotesubscribe.php:167 @@ -5266,7 +5311,7 @@ msgstr "ఈ సైటులో మీరు వాడుకరలకి పా msgid "User doesn't have this role." msgstr "వాడుకరికి ఈ పాత్ర లేదు." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "స్టేటస్‌నెట్" @@ -5311,94 +5356,94 @@ msgstr "" msgid "Save site settings" msgstr "సైటు అమరికలను భద్రపరచు" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "ఉపకరణాలని చూడడానికి మీరు తప్పనిసరిగా ప్రవేశించి ఉండాలి." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "ఉపకరణ ప్రవర" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "ప్రతీకం" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "పేరు" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "సంస్ధ" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "వివరణ" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "గణాంకాలు" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "సృష్టించినది %1$s - అప్రమేయ అందుబాటు %2$s - %3$d వాడుకరులు" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "ఉపకరణ చర్యలు" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "తొలగించు" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "ఉపకరణ సమాచారం" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 #, fuzzy msgid "Authorize URL" msgstr "రచయిత" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 #, fuzzy msgid "Are you sure you want to reset your consumer key and secret?" msgstr "మీరు నిజంగానే ఈ నోటీసుని తొలగించాలనుకుంటున్నారా?" @@ -5487,16 +5532,18 @@ msgid "Group profile" msgstr "గుంపు ప్రొఫైలు" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "గమనిక" @@ -5645,7 +5692,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s, %2$dవ పేజీ" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5893,7 +5940,8 @@ msgstr "సైటు-వారీ నోటీసు పాఠ్యం (255 అ #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "సైటు గమనికని భద్రపరచు" #. TRANS: Title for SMS settings. @@ -5954,7 +6002,7 @@ msgstr "ఫోను నెంబరు లేదు." #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 #, fuzzy -msgid "Phone number, no punctuation or spaces, with area code" +msgid "Phone number, no punctuation or spaces, with area code." msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామ చిహ్నాలు లేదా ఖాళీలు లేకుండా. తప్పనిసరి." #. TRANS: Form legend for SMS preferences form. @@ -6285,8 +6333,9 @@ msgstr "ట్యాగులు" msgid "User profile" msgstr "వాడుకరి ప్రొఫైలు" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "ఫొటో" @@ -6302,6 +6351,11 @@ msgid "" "separated" msgstr "" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "తప్పుడు మారుపేరు: \"%s\"" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6338,7 +6392,7 @@ msgstr "అధీకరణ అభ్యర్థన లేదు!" msgid "Unsubscribed" msgstr "చందామాను" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6369,7 +6423,7 @@ msgstr "చెల్లని స్వాగత పాఠ్యం. గరి #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" #. TRANS: Link description in user account settings menu. @@ -6431,102 +6485,141 @@ msgstr "వాడుకరులను కొత్త వారిని ఆహ #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "వాడుకరి అమరికలను భద్రపరచు" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "చందాని అధీకరించండి" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "లైసెన్సు" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "అంగీకరించు" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "ఈ వాడుకరికి చందాచేరు" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "తిరస్కరించు" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "ఈ చందాని తిరస్కరించు" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "అధీకరణ అభ్యర్థన లేదు!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "చందాని అధీకరించారు" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "చందాని తిరస్కరించారు." -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " "subscription." msgstr "" -#: actions/userauthorization.php:303 +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 #, php-format -msgid "Listener URI ‘%s’ not found here." +msgid "Listener URI \"%s\" not found here." msgstr "" -#: actions/userauthorization.php:308 +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 #, php-format -msgid "Listenee URI ‘%s’ is too long." +msgid "Listenee URI \"%s\" is too long." msgstr "" -#: actions/userauthorization.php:314 +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 #, php-format -msgid "Listenee URI ‘%s’ is a local user." +msgid "Listenee URI \"%s\" is a local user." msgstr "" -#: actions/userauthorization.php:329 +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 #, php-format -msgid "Profile URL ‘%s’ is for a local user." +msgid "Profile URL \"%s\" is for a local user." msgstr "" -#: actions/userauthorization.php:345 +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 #, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" -#: actions/userauthorization.php:350 +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." +msgstr "హోమ్ పేజీ URL సరైనది కాదు." + +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 #, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." +msgid "Cannot read avatar URL \"%s\"." msgstr "'%s' అనే అవతారపు URL తప్పు" -#: actions/userauthorization.php:355 +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 #, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." +msgid "Wrong image type for avatar URL \"%s\"." msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం" #. TRANS: Page title for profile design page. @@ -7726,6 +7819,11 @@ msgstr "సంకేతపదం మార్పు" msgid "Block" msgstr "నిరోధించు" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "ఈ వాడుకరిని నిరోధించు" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8148,6 +8246,11 @@ msgstr "అధీకృత అనుసంధాన ఉపకరణాలు" msgid "Database error" msgstr "" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "ఈ వాడుకరిని తొలగించు" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8182,6 +8285,23 @@ msgstr "రంగులను మార్చు" msgid "Use defaults" msgstr "అప్రమేయాలని ఉపయోగించు" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +#, fuzzy +msgid "Restore default designs" +msgstr "అప్రమేయాలని ఉపయోగించు" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +#, fuzzy +msgid "Reset back to default" +msgstr "అప్రమేయాలని ఉపయోగించు" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "రూపురేఖలని భద్రపరచు" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8291,7 +8411,6 @@ msgid "Grant this user the \"%s\" role" msgstr "" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప" @@ -9051,6 +9170,10 @@ msgstr "ఈ నోటీసుపై స్పందించండి" msgid "Reply" msgstr "స్పందించండి" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "ఈ నోటీసుని తొలగించు" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "నోటీసుని పునరావృతించారు" @@ -9337,6 +9460,10 @@ msgstr "ఆహ్వానించు" msgid "Invite friends and colleagues to join you on %s" msgstr "%sలో తోడుకై మీ స్నేహితులని మరియు సహోద్యోగులని ఆహ్వానించండి" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "ఈ వాడుకరికి చందాచేరు" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9607,3 +9734,15 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు" + +#~ msgid "Same as password above" +#~ msgstr "పై సంకేతపదం వలెనే" + +#~ msgid "Can't save new password." +#~ msgstr "కొత్త సంకేతపదాన్ని భద్రపరచలేము." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 32ee491927..d4cb84ef60 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:46+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:48+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\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: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -155,7 +155,7 @@ msgstr "Böyle bir sayfa yok." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -516,7 +516,8 @@ msgstr "Alıcı kullanıcı bulunamadı." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "Arkadaşınız olmayan kullanıcılara özel mesaj gönderemezsiniz." #. TRANS: Client error displayed trying to direct message self (403). @@ -601,7 +602,7 @@ msgstr "Hedef kullanıcı bulunamadı." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Takma ad kullanımda. Başka bir tane deneyin." @@ -611,7 +612,7 @@ msgstr "Takma ad kullanımda. Başka bir tane deneyin." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Geçersiz bir takma ad." @@ -624,7 +625,7 @@ msgstr "Geçersiz bir takma ad." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "Başlangıç sayfası adresi geçerli bir URL değil." @@ -634,7 +635,7 @@ msgstr "Başlangıç sayfası adresi geçerli bir URL değil." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "Tam isim çok uzun (en fazla: 255 karakter)." @@ -661,7 +662,7 @@ msgstr[0] "Tanım çok uzun (en fazla %d karakter)." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "Yer bilgisi çok uzun (en fazla 255 karakter)." @@ -815,15 +816,15 @@ msgstr "İstek belirteci zaten yetkili." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "Oturum belirtecinizde bir sorun var. Lütfen, tekrar deneyin." @@ -854,7 +855,7 @@ msgstr "oauth_token_association eklerken veritabanı hatası." #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Beklenmeğen form girdisi." @@ -907,19 +908,20 @@ msgstr "Hesap" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Takma ad" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Parola" @@ -1041,8 +1043,8 @@ msgstr "HTTP yöntemi desteklenmiyor." #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 -#, php-format -msgid "Unsupported format: %s" +#, fuzzy, php-format +msgid "Unsupported format: %s." msgstr "Desteklenmeyen biçim: %s" #. TRANS: Client error displayed requesting a deleted status. @@ -1217,25 +1219,26 @@ msgid "Atom post must be an Atom entry." msgstr "" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1404,7 +1407,7 @@ msgid "Not a member." msgstr "Tüm üyeler" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 #, fuzzy msgid "Cannot delete someone else's membership." msgstr "Yeni abonelik eklenemedi." @@ -1510,9 +1513,11 @@ msgstr "" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "Kullanıcının profili yok." @@ -1569,9 +1574,10 @@ msgstr "Kırp" msgid "No file uploaded." msgstr "Hiçbir dosya yüklenmedi." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Resimden kullanıcı resminiz olacak bir kare alanı seçin" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1630,7 +1636,7 @@ msgstr "Arkaplan" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1672,7 +1678,8 @@ msgstr "Hayır" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Bu kullanıcıyı engelleme" #. TRANS: Button label on the user block form. @@ -1689,9 +1696,9 @@ msgid "Yes" msgstr "Evet" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Bu kullanıcıyı engelle" #. TRANS: Server error displayed when blocking a user fails. @@ -1855,7 +1862,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Onayla" @@ -1885,13 +1892,13 @@ msgstr "Onay kodu bulunamadı." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Bu uygulamanın sahibi değilsiniz." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "" @@ -1915,12 +1922,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Bu uygulamayı silme" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Bu uygulamayı sil" #. TRANS: Client error when trying to delete group while not logged in. @@ -1979,13 +1988,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 #, fuzzy -msgid "Do not delete this group" +msgid "Do not delete this group." msgstr "Bu durum mesajını silme" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 #, fuzzy -msgid "Delete this group" +msgid "Delete this group." msgstr "Bu kullanıcıyı sil" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2028,12 +2037,14 @@ msgstr "Bu durum mesajını silmek istediğinizden emin misiniz?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Bu durum mesajını silme" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Bu durum mesajını sil" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2070,13 +2081,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 #, fuzzy -msgid "Do not delete this user" +msgid "Do not delete this user." msgstr "Bu durum mesajını silme" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Bu kullanıcıyı sil" #. TRANS: Message used as title for design settings for the site. @@ -2243,21 +2254,21 @@ msgid "Use defaults" msgstr "Öntanımlıları kullan" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" -msgstr "" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." +msgstr "Öntanımlıları kullan" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Öntanımlıya geri dön" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Dizaynı kaydet" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2289,7 +2300,7 @@ msgid "You must be logged in to edit an application." msgstr "Bir uygulamayı düzenlemek için giriş yapmış olmanız gerekir." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Böyle bir uygulama yok." @@ -2576,7 +2587,7 @@ msgid "Cannot normalize that email address." msgstr "Jabber işlemlerinde bir hata oluştu." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Geçersiz bir eposta adresi." @@ -2655,19 +2666,22 @@ msgstr "Geçersiz bir eposta adresi." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 #, fuzzy msgid "Could not update user record." msgstr "Kullanıcı kayıtları güncellenemedi." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Gelen e-posta adresi silindi." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Yeni gelen e-posta adresi eklendi." @@ -2678,7 +2692,8 @@ msgstr "Bu durum mesajı zaten bir favori!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Favoriliğini kaldır" #. TRANS: Page title for first page of favorited notices. @@ -2917,12 +2932,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Bu kullanıcıyı bu gruptan engellemeyin" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Bu kullanıcıyı bu gruptan engelleyin" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3243,7 +3260,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Onaylanmış Jabber/Gtalk adresi." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Tercihler kaydedildi." @@ -3625,41 +3643,41 @@ msgstr "Kaydet" msgid "Save license settings" msgstr "Lisans ayarlarını kaydet" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Zaten giriş yapılmış." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Yanlış kullanıcı adı veya parola." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 #, fuzzy msgid "Error setting user. You are probably not authorized." msgstr "Yetkilendirilmemiş." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Giriş" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Siteye giriş" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Beni hatırla" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Gelecekte kendiliğinden giriş yap, paylaşılan bilgisayarlar için değildir!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Parolamı unuttum veya kaybettim" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3667,11 +3685,11 @@ msgstr "" "Güvenliğiniz için, ayarlarınızı değiştirmeden önce lütfen kullanıcı adınızı " "ve parolanızı tekrar giriniz." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Yanlış kullanıcı adı veya parola." -#: actions/login.php:295 +#: actions/login.php:284 #, fuzzy, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3880,30 +3898,30 @@ msgid "You have not registered any applications yet." msgstr "" #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Bağlı uygulamalar" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Bu uygulamanın bir kullanıcısı değilsiniz." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, fuzzy, php-format msgid "Unable to revoke access for application: %s." msgstr "Uygulamayı düzenlemek için bu biçimi kullan." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3911,20 +3929,30 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "" #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "Onay kodu bulunamadı." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "Üst durum mesajı bulunamadı." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Kullanıcının profili yok." @@ -3934,6 +3962,16 @@ msgstr "Kullanıcının profili yok." msgid "%1$s's status on %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Alıcı kullanıcı bulunamadı." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, fuzzy, php-format @@ -4028,17 +4066,21 @@ msgstr "Geçersiz durum mesajı" msgid "Login token expired." msgstr "" -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" @@ -4064,40 +4106,45 @@ msgstr "Eski parola" msgid "New password" msgstr "Yeni parola" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +#, fuzzy +msgid "6 or more characters." msgstr "6 veya daha fazla karakter" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +#, fuzzy +msgid "Same as password above." msgstr "yukarıdaki parolanın aynısı" #: actions/passwordsettings.php:117 msgid "Change" msgstr "Değiştir" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Parola 6 veya daha fazla karakterden oluşmalıdır." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Parolalar birbirini tutmuyor." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Eski parola yanlış" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Kullanıcıyı kaydetmede hata oluştu; geçersiz." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." msgstr "Yeni parola kaydedilemedi." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Parola kaydedildi." @@ -4439,7 +4486,7 @@ msgid "Profile information" msgstr "Profil ayarları" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" @@ -4449,7 +4496,7 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4457,13 +4504,13 @@ msgstr "Tam İsim" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Başlangıç Sayfası" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 #, fuzzy msgid "URL of your homepage, blog, or profile on another site." msgstr "" @@ -4472,36 +4519,37 @@ msgstr "" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" msgstr[0] "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 #, fuzzy msgid "Describe yourself and your interests" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Hakkında" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Yer" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" @@ -4520,8 +4568,10 @@ msgstr "Etiketler" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Kendiniz için etiketler (harf, sayı, -. ., ve _ kullanılabilir), virgül veya " "boşlukla ayırabilirsiniz" @@ -4533,7 +4583,8 @@ msgstr "Dil" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Tercih edilen dil" #. TRANS: Dropdownlist label in form for profile settings. @@ -4548,14 +4599,15 @@ msgstr "Normalde hangi zaman dilimi içindesiniz?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "Bana abone olan herkese abone yap (insan olmayanlar için en iyisi)" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4574,9 +4626,9 @@ msgstr "Dil çok uzun (maksimum: 50 karakter)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Geçersiz büyüklük." #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4816,6 +4868,12 @@ msgstr "Parolanı geri al" msgid "Password recovery requested" msgstr "Parola geri alma isteği" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Parola kaydedildi." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4827,12 +4885,6 @@ msgstr "" msgid "6 or more characters, and do not forget it!" msgstr "Unutmayın, 6 veya daha fazla karakter" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -#, fuzzy -msgid "Same as password above." -msgstr "yukarıdaki parolanın aynısı" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4887,14 +4939,8 @@ msgstr "Parola 6 veya daha fazla karakterden oluşmalıdır." msgid "Password and confirmation do not match." msgstr "Parola ve onaylaması birbirini tutmuyor." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -#, fuzzy -msgid "Cannot save new password." -msgstr "Yeni parola kaydedilemedi." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Kullanıcı ayarlamada hata oluştu." @@ -4903,93 +4949,90 @@ msgstr "Kullanıcı ayarlamada hata oluştu." msgid "New password successfully saved. You are now logged in." msgstr "Yeni parola başarıyla kaydedildi. Şimdi giriş yaptınız." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "" -#: actions/register.php:99 +#: actions/register.php:94 #, fuzzy msgid "Sorry, invalid invitation code." msgstr "Onay kodu hatası." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Kayıt başarılı" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Kayıt" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Kayıt yapılmasına izin verilmiyor." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Eposta adresi zaten var." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Geçersiz kullanıcı adı veya parola." -#: actions/register.php:351 +#: actions/register.php:340 msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" -#: actions/register.php:437 -#, fuzzy -msgid "6 or more characters." -msgstr "6 veya daha fazla karakter" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Eposta" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "" "Sadece sistem güncellemeleri, duyurular ve parola geri alma için kullanılır." -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +msgid "Longer name, preferably your \"real\" name." msgstr "" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "" -"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Tüm hakları saklıdır." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, fuzzy, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4998,7 +5041,7 @@ msgstr "" "bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon " "numarası." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5017,7 +5060,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5045,7 +5088,8 @@ msgid "User nickname" msgstr "Kullanıcı takma adı" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Takip etmek istediğiniz kullanıcının takma adı" #: actions/remotesubscribe.php:132 @@ -5053,7 +5097,7 @@ msgid "Profile URL" msgstr "Profil Adresi" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5063,8 +5107,9 @@ msgid "Subscribe" msgstr "Abone ol" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" -msgstr "" +#, fuzzy +msgid "Invalid profile URL (bad format)." +msgstr "Geçersiz dosya ismi." #: actions/remotesubscribe.php:167 #, fuzzy @@ -5259,7 +5304,7 @@ msgstr "Bize o profili yollamadınız" msgid "User doesn't have this role." msgstr "Kullanıcının profili yok." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "İstatistikler" @@ -5303,95 +5348,95 @@ msgstr "" msgid "Save site settings" msgstr "Profil ayarları" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "" -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 #, fuzzy msgid "Application profile" msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Simge" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 #, fuzzy msgid "Name" msgstr "Takma ad" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organizasyon" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Tanım" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "İstatistikler" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Sil" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" @@ -5477,16 +5522,18 @@ msgid "Group profile" msgstr "Kullanıcının profili yok." #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "Bağlantı" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Not" @@ -5624,7 +5671,7 @@ msgid "%1$s tagged %2$s" msgstr "%s ve arkadaşları" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, fuzzy, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5865,7 +5912,7 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 #, fuzzy -msgid "Save site notice" +msgid "Save site notice." msgstr "Yeni durum mesajı" #. TRANS: Title for SMS settings. @@ -5928,7 +5975,7 @@ msgstr "" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 #, fuzzy -msgid "Phone number, no punctuation or spaces, with area code" +msgid "Phone number, no punctuation or spaces, with area code." msgstr "" "1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " "verilmez" @@ -6265,8 +6312,9 @@ msgstr "" msgid "User profile" msgstr "Kullanıcının profili yok." +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Fotoğraf" @@ -6281,6 +6329,11 @@ msgid "" "separated" msgstr "" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Geçersiz büyüklük." + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6319,7 +6372,7 @@ msgstr "Yetkilendirme isteği yok!" msgid "Unsubscribed" msgstr "Aboneliği sonlandır" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6351,7 +6404,7 @@ msgstr "Geçersiz lisans başlığı. En fazla uzunluk 255 karakterdir." #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 #, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" #. TRANS: Link description in user account settings menu. @@ -6415,106 +6468,145 @@ msgstr "" #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" -msgstr "" +#, fuzzy +msgid "Save user settings." +msgstr "Profil ayarları" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Takip isteğini onayla" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için " "detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " "bulunmadıysanız \"İptal\" tuşuna basın. " +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Lisans" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Kabul et" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Bize o profili yollamadınız" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Reddet" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Takip isteğini onayla" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Yetkilendirme isteği yok!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Takip talebine izin verildi" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Abonelik reddedildi." -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " "subscription." msgstr "" -#: actions/userauthorization.php:303 +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 #, php-format -msgid "Listener URI ‘%s’ not found here." +msgid "Listener URI \"%s\" not found here." msgstr "" -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." +msgstr "Kaynak bağlantı çok uzun." -#: actions/userauthorization.php:314 +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 #, php-format -msgid "Listenee URI ‘%s’ is a local user." +msgid "Listenee URI \"%s\" is a local user." msgstr "" -#: actions/userauthorization.php:329 +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 #, php-format -msgid "Profile URL ‘%s’ is for a local user." +msgid "Profile URL \"%s\" is for a local user." msgstr "" -#: actions/userauthorization.php:345 +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 #, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" -#: actions/userauthorization.php:350 +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 #, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." +msgid "Avatar URL \"%s\" is not valid." +msgstr "Kaynak bağlantı geçerli değil." + +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Avatar URLi '%s' okunamıyor" -#: actions/userauthorization.php:355 +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 #, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." +msgid "Wrong image type for avatar URL \"%s\"." msgstr "%s için yanlış resim türü" #. TRANS: Page title for profile design page. @@ -7718,6 +7810,11 @@ msgstr "Parola kaydedildi." msgid "Block" msgstr "Engelle" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Bu kullanıcıyı engelle" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8130,6 +8227,11 @@ msgstr "" msgid "Database error" msgstr "" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Bu kullanıcıyı sil" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8169,6 +8271,21 @@ msgstr "Renkleri değiştir" msgid "Use defaults" msgstr "Öntanımlıları kullan" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Öntanımlıya geri dön" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Dizaynı kaydet" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8277,7 +8394,6 @@ msgid "Grant this user the \"%s\" role" msgstr "" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " @@ -8961,6 +9077,10 @@ msgstr "" msgid "Reply" msgstr "Cevaplar" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Bu durum mesajını sil" + #: lib/noticelist.php:691 #, fuzzy msgid "Notice repeated" @@ -9252,6 +9372,10 @@ msgstr "" msgid "Invite friends and colleagues to join you on %s" msgstr "" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Bize o profili yollamadınız" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9523,3 +9647,17 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "6 or more characters" +#~ msgstr "6 veya daha fazla karakter" + +#~ msgid "Same as password above" +#~ msgstr "yukarıdaki parolanın aynısı" + +#~ msgid "Can't save new password." +#~ msgstr "Yeni parola kaydedilemedi." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "" +#~ "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin " +#~ "adresi" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 2a437e7d6e..edf502beb3 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:49+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:49+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -157,7 +157,7 @@ msgstr "Немає такої сторінки." #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -522,7 +522,8 @@ msgstr "Отримувача не знайдено." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "" "Не можна надіслати пряме повідомлення користувачеві, який не є вашим другом." @@ -610,7 +611,7 @@ msgstr "Не вдалося знайти цільового користувач #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "Це ім’я вже використовується. Спробуйте інше." @@ -620,7 +621,7 @@ msgstr "Це ім’я вже використовується. Спробуйт #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "Це недійсне ім’я користувача." @@ -633,7 +634,7 @@ msgstr "Це недійсне ім’я користувача." #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "Веб-сторінка має недійсну URL-адресу." @@ -643,7 +644,7 @@ msgstr "Веб-сторінка має недійсну URL-адресу." #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "Повне ім’я надто довге (не більше 255 символів)." @@ -672,7 +673,7 @@ msgstr[2] "Опис надто довгий (максимум — %d знакі #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "Розташування надто довге (не більше 255 символів)." @@ -828,15 +829,15 @@ msgstr "Токен запиту вже авторизовано." #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -868,7 +869,7 @@ msgstr "Помилка бази даних при додаванні парам #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Несподіване представлення форми." @@ -920,19 +921,20 @@ msgstr "Акаунт" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "Ім’я користувача" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Пароль" @@ -1054,8 +1056,8 @@ msgstr "HTTP спосіб не підтримується." #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 -#, php-format -msgid "Unsupported format: %s" +#, fuzzy, php-format +msgid "Unsupported format: %s." msgstr "Не підтримується формат: %s" #. TRANS: Client error displayed requesting a deleted status. @@ -1237,25 +1239,26 @@ msgid "Atom post must be an Atom entry." msgstr "POST-запит Atom має бути записом формату Atom." #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "Можливою є обробка лише POST-запитів." #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "Неможливо опрацювати дії об’єкта типу «%s»." #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, php-format msgid "No content for notice %d." msgstr "Допис %d не має змісту." #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1410,7 +1413,7 @@ msgid "Not a member." msgstr "Не є учасником." #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 msgid "Cannot delete someone else's membership." msgstr "Неможливо позбавити когось членства." @@ -1513,9 +1516,11 @@ msgstr "Ви можете завантажити аватару. Максима #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "Користувач без відповідного профілю." @@ -1570,9 +1575,10 @@ msgstr "Втяти" msgid "No file uploaded." msgstr "Жодного файлу не завантажено." -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "Оберіть квадратну ділянку зображення, яка й буде вашою автарою." #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1638,7 +1644,8 @@ msgstr "Резерв. копія" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +#, fuzzy +msgid "Backup your account." msgstr "Резервне копіювання вашого акаунту" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1679,7 +1686,8 @@ msgstr "Ні" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "Не блокувати цього користувача" #. TRANS: Button label on the user block form. @@ -1696,9 +1704,9 @@ msgid "Yes" msgstr "Так" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "Блокувати користувача" #. TRANS: Server error displayed when blocking a user fails. @@ -1862,7 +1870,7 @@ msgstr "" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "Підтвердити" @@ -1891,13 +1899,13 @@ msgstr "Додаток не виявлено." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "Ви не є власником цього додатку." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "Виникли певні проблеми з токеном поточної сесії." @@ -1921,12 +1929,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "Не видаляти додаток" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "Видалити додаток" #. TRANS: Client error when trying to delete group while not logged in. @@ -1980,12 +1990,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "Не видаляти цю спільноту" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "Видалити спільноту" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -2026,12 +2038,14 @@ msgstr "Ви впевненні, що бажаєте видалити цей д #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "Не видаляти цей допис" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "Видалити допис" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2066,13 +2080,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 -msgid "Do not delete this user" +#, fuzzy +msgid "Do not delete this user." msgstr "Не видаляти цього користувача" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "Видалити цього користувача" #. TRANS: Message used as title for design settings for the site. @@ -2236,21 +2251,21 @@ msgid "Use defaults" msgstr "За замовч." #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "Оновити налаштування за замовчуванням" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "Повернутись до початкових налаштувань" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "Зберегти дизайн" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2282,7 +2297,7 @@ msgid "You must be logged in to edit an application." msgstr "Ви маєте спочатку увійти, аби мати змогу керувати додатком." #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "Такого додатку немає." @@ -2564,7 +2579,7 @@ msgid "Cannot normalize that email address." msgstr "Не можна полагодити цю поштову адресу." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Це недійсна електронна адреса." @@ -2639,18 +2654,21 @@ msgstr "Немає адреси для вхідної пошти." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 msgid "Could not update user record." msgstr "Не вдалося оновити запис користувача." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "Адресу вхідної пошти видалено." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "Нову адресу для вхідних повідомлень додано." @@ -2661,7 +2679,8 @@ msgstr "Цей допис вже є обраним!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "Видалити з обраних" #. TRANS: Page title for first page of favorited notices. @@ -2900,12 +2919,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "Не блокувати користувача в спільноті" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "Заблокувати користувача в спільноті" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3234,7 +3255,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "Позначати міткою MicroID мою адресу Jabber/Google Talk." #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "Преференції збережно." @@ -3651,41 +3673,41 @@ msgstr "Зберегти" msgid "Save license settings" msgstr "Зберегти налаштування ліцензії" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "Тепер ви увійшли." -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "Неточне ім’я або пароль." -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "Помилка. Можливо, ви не авторизовані." -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "Увійти" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "Вхід на сайт" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "Пам’ятати мене" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Автоматично входити у майбутньому; не для комп’ютерів загального " "користування!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "Загубили або забули пароль?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -3693,11 +3715,11 @@ msgstr "" "З міркувань безпеки, будь ласка, введіть ще раз ім’я та пароль, перед тим як " "змінювати налаштування." -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "Увійти використовуючи ім’я та пароль." -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3910,30 +3932,30 @@ msgid "You have not registered any applications yet." msgstr "Поки що ви не зареєстрували жодних додатків." #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "Під’єднані додатки" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "Наступні з’єднання вже існують для вашого профілю." #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "Ви не є користувачем даного додатку." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, php-format msgid "Unable to revoke access for application: %s." msgstr "Неможливо скасувати доступ для додатку: %s." #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3943,14 +3965,14 @@ msgstr "" "$s." #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "Ви не дозволили жодним додаткам використовувати ваш акаунт." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " @@ -3959,6 +3981,16 @@ msgstr "" "Ви — розробник? [Зареєструйте клієнтський додаток OAuth](%s) щоб " "користуватися ним на даному сайті StatusNet." +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "Сторінку не знайдено." + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "Початковий допис не знайдено." + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "Допис не має профілю." @@ -3968,6 +4000,16 @@ msgstr "Допис не має профілю." msgid "%1$s's status on %2$s" msgstr "%1$s має статус на %2$s" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "Отримувача не знайдено." + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -4057,17 +4099,21 @@ msgstr "Токен для входу визначено як неправиль msgid "Login token expired." msgstr "Токен для входу втратив чинність." -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "Вихідні для %1$s — сторінка %2$d" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Вихідні для %s" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "" "Це ваші вихідні повідомлення, тут містяться повідомлення, які ви надіслали " @@ -4095,40 +4141,42 @@ msgstr "Старий пароль" msgid "New password" msgstr "Новий пароль" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" -msgstr "6 або більше знаків" +#: actions/passwordsettings.php:109 actions/register.php:423 +msgid "6 or more characters." +msgstr "6 або більше знаків." -#: actions/passwordsettings.php:113 -msgid "Same as password above" -msgstr "Такий само, як і пароль вище" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +msgid "Same as password above." +msgstr "Такий само, як і пароль вище." #: actions/passwordsettings.php:117 msgid "Change" msgstr "Змінити" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "Пароль має складатись з 6-ти або більше знаків." -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "Паролі не співпадають." -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Старий пароль є неточним" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "Помилка при збереженні користувача; недійсний." -#: actions/passwordsettings.php:186 -msgid "Can't save new password." -msgstr "Неможна зберегти новий пароль." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +msgid "Cannot save new password." +msgstr "Не вдається зберегти новий пароль." -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "Пароль збережено." @@ -4453,14 +4501,14 @@ msgid "Profile information" msgstr "Інформація профілю" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 рядкових літер і цифр, ніякої пунктуації або інтервалів." #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4468,20 +4516,20 @@ msgstr "Повне ім’я" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "Веб-сторінка" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site." msgstr "URL-адреса вашої веб-сторінки, блоґу, або профілю на іншому сайті." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4490,28 +4538,29 @@ msgstr[1] "Опишіть себе та свої інтереси інтерес msgstr[2] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "Опишіть себе та свої інтереси" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "Про себе" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "Розташування" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Де ви живете, на кшталт «Місто, область (регіон), країна»" @@ -4530,8 +4579,10 @@ msgstr "Теґи" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" "Позначте себе теґами (літери, цифри, -, . та _), відокремлюючи кожен комою " "або пробілом" @@ -4543,7 +4594,8 @@ msgstr "Мова" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "Мова, котрій надаєте перевагу" #. TRANS: Dropdownlist label in form for profile settings. @@ -4558,15 +4610,16 @@ msgstr "За яким часовим поясом ви живете?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Автоматично підписуватись до тих, хто підписався до мене. (Слава роботам!)" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4586,9 +4639,9 @@ msgstr "Мова надто довга (не більше 50 символів)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "Недійсний теґ: «%s»" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4829,6 +4882,12 @@ msgstr "Відновити пароль" msgid "Password recovery requested" msgstr "Запит на відновлення паролю відправлено" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "Пароль збережено." + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4839,11 +4898,6 @@ msgstr "Дія невідома" msgid "6 or more characters, and do not forget it!" msgstr "6 або більше знаків, і не забудьте їх!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -msgid "Same as password above." -msgstr "Такий само, як і пароль вище." - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4895,13 +4949,8 @@ msgstr "Пароль має складатись з 6-ти або більше msgid "Password and confirmation do not match." msgstr "Пароль та підтвердження не співпадають." -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -msgid "Cannot save new password." -msgstr "Не вдається зберегти новий пароль." - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "Помилка в налаштуваннях користувача." @@ -4910,92 +4959,93 @@ msgstr "Помилка в налаштуваннях користувача." msgid "New password successfully saved. You are now logged in." msgstr "Новий пароль успішно збережено. Тепер ви увійшли." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "" "Пробачте, але лише ті, кого було запрошено, мають змогу зареєструватись тут." -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "Даруйте, помилка у коді запрошення." -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "Реєстрація успішна" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "Реєстрація" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "Реєстрацію не дозволено." -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "Ви не зможете зареєструватись, якщо не погодитесь з умовами ліцензії." -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "Ця адреса вже використовується." -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "Недійсне ім’я або пароль." -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "Ця форма дозволить вам створити новий акаунт. Ви зможете робити дописи і " "будете в курсі справ ваших друзів та колег. " -#: actions/register.php:437 -msgid "6 or more characters." -msgstr "6 або більше знаків." - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Пошта" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "Використовується лише для оновлень, оголошень та відновлення паролю" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "Повне ім’я, звісно ж ваше справжнє ім’я" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL-адреса вашої веб-сторінки, блоґу, або профілю на іншому сайті" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Де ви живете, на кшталт «Місто, область (регіон), країна»" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "Я розумію, що зміст і дані %1$s є приватними і конфіденційними." -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "Авторські права на мої тексти і файли належать %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "Авторські права на мої тексти і файли залишаються за мною." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "Всі права захищені." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5004,7 +5054,7 @@ msgstr "" "Мої дописи і файли доступні на умовах %s, окрім цих приватних даних: пароль, " "електронна адреса, адреса IM, телефонний номер." -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5037,7 +5087,7 @@ msgstr "" "Дякуємо, що зареєструвались у нас, і, сподіваємось, вам сподобається наш " "сервіс." -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5069,7 +5119,8 @@ msgid "User nickname" msgstr "Ім’я користувача" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "Ім’я користувача, дописи якого ви хотіли б читати." #: actions/remotesubscribe.php:132 @@ -5077,7 +5128,8 @@ msgid "Profile URL" msgstr "URL-адреса профілю" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "URL-адреса вашого профілю на іншому сумісному сервісі" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -5087,7 +5139,8 @@ msgid "Subscribe" msgstr "Підписатись" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "Недійсна URL-адреса профілю (неправильний формат)" #: actions/remotesubscribe.php:167 @@ -5286,7 +5339,7 @@ msgstr "Ви не можете позбавляти користувачів р msgid "User doesn't have this role." msgstr "Користувач не має цієї ролі." -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5328,87 +5381,87 @@ msgstr "Виводити дані сесії наладки." msgid "Save site settings" msgstr "Зберегти налаштування сайту" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "Ви повинні спочатку увійти, аби переглянути додаток." -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "Профіль додатку" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "Іконка" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "Ім’я" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "Організація" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "Опис" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "Статистика" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "Створено %1$s — %2$s доступ за замовч. — %3$d користувачів" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "Можливості додатку" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "Призначити новий ключ і таємне слово" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Видалити" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "Інфо додатку" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Ключ споживача" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Таємно слово споживача" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "URL-адреса токена запиту" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "URL-адреса токена дозволу" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "Авторизувати URL-адресу" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." @@ -5416,7 +5469,7 @@ msgstr "" "До уваги: Всі підписи шифруються за методом HMAC-SHA1. Ми не підтримуємо " "шифрування підписів відкритим текстом." -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "Ви впевнені, що бажаєте скинути ваш ключ споживача і секретний код?" @@ -5509,16 +5562,18 @@ msgid "Group profile" msgstr "Профіль спільноти" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "Зауваження" @@ -5664,7 +5719,7 @@ msgid "%1$s tagged %2$s" msgstr "Дописи %1$s позначені теґом %2$s" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5915,7 +5970,8 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "Зберегти повідомлення сайту" #. TRANS: Title for SMS settings. @@ -5973,7 +6029,8 @@ msgstr "Телефонний номер" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "Телефонний номер та регіональний код, ніякої пунктуації чи інтервалів" #. TRANS: Form legend for SMS preferences form. @@ -6309,8 +6366,9 @@ msgstr "Позначити %s" msgid "User profile" msgstr "Профіль користувача." +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "Фото" @@ -6327,6 +6385,11 @@ msgstr "" "Позначити користувача теґами (літери, цифри, -, . та _), відокремлюючи кожен " "комою або пробілом" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Недійсний теґ: «%s»" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6362,7 +6425,7 @@ msgstr "У запиті відсутній ID профілю." msgid "Unsubscribed" msgstr "Відписано" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6392,8 +6455,8 @@ msgstr "Помилковий текст привітання. Максималь #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 -#, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +#, fuzzy, php-format +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Помилкова підписка за замовчуванням: «%1$s» не є користувачем." #. TRANS: Link description in user account settings menu. @@ -6454,55 +6517,71 @@ msgstr "" #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "Зберегти налаштування користувача" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "Авторизувати підписку" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте " "підписатись на дописи цього користувача. Якщо ви не збирались підписуватись " "ні до чиїх дописів, просто натисніть «Відмінити»." +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "Ліцензія" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "Погодитись" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "Підписатись до цього користувача" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "Забраковано" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "Відмінити цю підписку" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "Немає запиту на авторизацію!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "Підписку авторизовано" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6512,11 +6591,12 @@ msgstr "" "Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як " "авторизувати підписку. Ваш підписний токен:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "Підписку скинуто" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " @@ -6526,39 +6606,62 @@ msgstr "" "з інструкціями на сайті для більш конкретної інформації про те, як скинути " "підписку." -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "URI слухача «%s» тут не знайдено" -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "URI слухача «%s» задовге." -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "URI слухача «%s» це локальний користувач" -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "URL-адреса профілю «%s» для локального користувача." -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "Ліцензія «%1$s» не відповідає ліцензії сайту «%2$s»." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "URL-адреса аватари «%s» помилкова." -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "Не можна прочитати URL аватари «%s»." -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "Неправильний тип зображення для URL-адреси аватари «%s»." #. TRANS: Page title for profile design page. @@ -7768,6 +7871,11 @@ msgstr "Змінювати пароль не дозволено." msgid "Block" msgstr "Блок" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "Блокувати користувача" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -8229,6 +8337,11 @@ msgstr "Авторизовані під’єднані додатки" msgid "Database error" msgstr "Помилка бази даних" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "Видалити цього користувача" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8265,6 +8378,21 @@ msgstr "Змінити кольори" msgid "Use defaults" msgstr "За замовч." +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "Оновити налаштування за замовчуванням" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "Повернутись до початкових налаштувань" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "Зберегти дизайн" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8369,9 +8497,9 @@ msgid "Grant this user the \"%s\" role" msgstr "Надати цьому користувачеві роль «%s»" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 рядкових літер і цифр, ніякої пунктуації або інтервалів." +msgstr "" +"1-64 літери нижнього регістру і цифри, ніякої пунктуації або інтервалів" #: lib/groupeditform.php:156 msgid "URL of the homepage or blog of the group or topic." @@ -8382,7 +8510,7 @@ msgid "Describe the group or topic" msgstr "Опишіть спільноту або тему" #: lib/groupeditform.php:163 -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d character or less" msgid_plural "Describe the group or topic in %d characters or less" msgstr[0] "Опишіть спільноту або тему, вкладаючись у %d знак" @@ -9045,7 +9173,6 @@ msgid "Send" msgstr "Так" #: lib/messagelist.php:77 -#, fuzzy msgid "Messages" msgstr "Повідомлення" @@ -9156,6 +9283,10 @@ msgstr "Відповісти на цей допис" msgid "Reply" msgstr "Відповісти" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "Видалити допис" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "Допис повторили" @@ -9431,6 +9562,10 @@ msgstr "Запросити" msgid "Invite friends and colleagues to join you on %s" msgstr "Запросіть друзів та колег приєднатись до вас на %s" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Підписатись до цього користувача" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9720,3 +9855,15 @@ msgstr "Неправильний XML, корінь XRD відсутній." #, php-format msgid "Getting backup from file '%s'." msgstr "Отримання резервної копії файлу «%s»." + +#~ msgid "6 or more characters" +#~ msgstr "6 або більше знаків" + +#~ msgid "Same as password above" +#~ msgstr "Такий само, як і пароль вище" + +#~ msgid "Can't save new password." +#~ msgstr "Неможна зберегти новий пароль." + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "URL-адреса вашої веб-сторінки, блоґу, або профілю на іншому сайті" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 398a1102c7..327597f732 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-14 16:00+0000\n" -"PO-Revision-Date: 2011-02-14 16:06:51+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:51+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-02-03 00:48:08+0000\n" +"X-POT-Import-Date: 2011-02-14 17:20:58+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -158,7 +158,7 @@ msgstr "没有这个页面。" #: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 #: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 #: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113 #: actions/showfavorites.php:106 actions/userbyid.php:74 #: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 #: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 @@ -511,7 +511,8 @@ msgstr "未找到收件人。" #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). #: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." +#, fuzzy +msgid "Cannot send direct messages to users who aren't your friend." msgstr "不能给未成为好友的用户发送私信。" #. TRANS: Client error displayed trying to direct message self (403). @@ -594,7 +595,7 @@ msgstr "无法找到目标用户。" #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:156 actions/editgroup.php:191 #: actions/newgroup.php:137 actions/profilesettings.php:273 -#: actions/register.php:214 +#: actions/register.php:206 msgid "Nickname already in use. Try another one." msgstr "昵称已被使用,换一个吧。" @@ -604,7 +605,7 @@ msgstr "昵称已被使用,换一个吧。" #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:164 actions/editgroup.php:195 #: actions/newgroup.php:141 actions/profilesettings.php:243 -#: actions/register.php:216 +#: actions/register.php:208 msgid "Not a valid nickname." msgstr "不是有效的昵称。" @@ -617,7 +618,7 @@ msgstr "不是有效的昵称。" #: actions/apigroupcreate.php:181 actions/editapplication.php:235 #: actions/editgroup.php:202 actions/newapplication.php:221 #: actions/newgroup.php:148 actions/profilesettings.php:248 -#: actions/register.php:223 +#: actions/register.php:215 msgid "Homepage is not a valid URL." msgstr "主页的URL不正确。" @@ -627,7 +628,7 @@ msgstr "主页的URL不正确。" #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:191 actions/editgroup.php:206 #: actions/newgroup.php:152 actions/profilesettings.php:252 -#: actions/register.php:226 +#: actions/register.php:218 msgid "Full name is too long (maximum 255 characters)." msgstr "全名过长(不能超过 255 个字符)。" @@ -654,7 +655,7 @@ msgstr[0] "D描述过长(不能超过%d 个字符)。" #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:215 actions/editgroup.php:218 #: actions/newgroup.php:164 actions/profilesettings.php:265 -#: actions/register.php:235 +#: actions/register.php:227 msgid "Location is too long (maximum 255 characters)." msgstr "位置过长(不能超过255个字符)。" @@ -808,15 +809,15 @@ msgstr "请求 token 已被授权了。" #: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:224 -#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66 +#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:155 actions/passwordsettings.php:138 +#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136 +#: actions/othersettings.php:155 actions/passwordsettings.php:137 #: actions/profilesettings.php:217 actions/recoverpassword.php:383 -#: actions/register.php:172 actions/remotesubscribe.php:76 +#: actions/register.php:164 actions/remotesubscribe.php:76 #: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: actions/unsubscribe.php:69 actions/userauthorization.php:53 #: lib/designsettings.php:310 msgid "There was a problem with your session token. Try again, please." msgstr "你的 session 出现了一个问题,请重试。" @@ -847,7 +848,7 @@ msgstr "插入 oauth_token_association 时数据库出错。" #: actions/designadminpanel.php:100 actions/editapplication.php:144 #: actions/emailsettings.php:310 actions/grouplogo.php:332 #: actions/imsettings.php:239 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 #: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "未预料的表单提交。" @@ -896,19 +897,20 @@ msgstr "帐号" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. #. TRANS: Label for group nickname (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for nick name in a profile. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:106 actions/register.php:432 +#: actions/apioauthauthorize.php:459 actions/login.php:242 +#: actions/profilesettings.php:106 actions/register.php:418 #: actions/showgroup.php:243 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:145 +#: actions/userauthorization.php:152 lib/groupeditform.php:145 #: lib/userprofile.php:137 msgid "Nickname" msgstr "昵称" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:120 +#: actions/apioauthauthorize.php:463 actions/login.php:245 +#: actions/register.php:422 lib/accountsettingsaction.php:120 msgid "Password" msgstr "密码" @@ -1026,8 +1028,8 @@ msgstr "HTTP 方法不支持。" #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. #: actions/apistatusesshow.php:144 -#, php-format -msgid "Unsupported format: %s" +#, fuzzy, php-format +msgid "Unsupported format: %s." msgstr "不支持的格式:%s" #. TRANS: Client error displayed requesting a deleted status. @@ -1199,25 +1201,26 @@ msgid "Atom post must be an Atom entry." msgstr "原子后必须是一个原子的条目。" #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. -#: actions/apitimelineuser.php:335 +#: actions/apitimelineuser.php:334 msgid "Can only handle POST activities." msgstr "只能处理开机自检活动。" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:346 +#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "无法处理活动对象类型 %s。" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#: actions/apitimelineuser.php:380 +#: actions/apitimelineuser.php:379 #, php-format msgid "No content for notice %d." msgstr "没有通知 %d 的内容。" #. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. #: actions/apitimelineuser.php:408 #, php-format msgid "Notice with URI \"%s\" already exists." @@ -1284,9 +1287,9 @@ msgstr "%s 组成员身份" #. TRANS: Subtitle for group membership feed. #. TRANS: %1$s is a username, %2$s is the StatusNet sitename. #: actions/atompubmembershipfeed.php:149 -#, fuzzy, php-format +#, php-format msgid "Groups %1$s is a member of on %2$s" -msgstr "%s 组是成员组成了" +msgstr "组 %1$s 是在 %2$s 上的成员" #. TRANS: Client exception thrown when trying subscribe someone else to a group. #: actions/atompubmembershipfeed.php:219 @@ -1372,7 +1375,7 @@ msgid "Not a member." msgstr "不是会员。" #. TRANS: Client exception thrown when deleting someone else's membership. -#: actions/atompubshowmembership.php:151 +#: actions/atompubshowmembership.php:150 msgid "Cannot delete someone else's membership." msgstr "不能删除其他人的成员资格。" @@ -1400,9 +1403,9 @@ msgstr "不能删除别人的订阅。" #. TRANS: Subtitle for Atom subscription feed. #. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename. #: actions/atompubsubscriptionfeed.php:153 -#, fuzzy, php-format +#, php-format msgid "People %1$s has subscribed to on %2$s" -msgstr "%1$在%2$s上关注的用户" +msgstr "人 %1$s 已经订阅的 %2$s" #. TRANS: Client error displayed when not using the follow verb. #: actions/atompubsubscriptionfeed.php:248 @@ -1475,9 +1478,11 @@ msgstr "你可以上传你的个人头像。文件大小限制在%s以下。" #. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. #. TRANS: Server error displayed coming across a request from a user without a profile. +#. TRANS: Server error displayed when trying to authorise a remote subscription request +#. TRANS: while the user has no profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:184 actions/remotesubscribe.php:190 -#: actions/userauthorization.php:72 actions/userrss.php:108 +#: actions/userauthorization.php:75 actions/userrss.php:108 msgid "User without matching profile." msgstr "用户没有相应个人信息。" @@ -1532,9 +1537,10 @@ msgstr "剪裁" msgid "No file uploaded." msgstr "没有文件被上传。" -#. TRANS: Avatar upload form unstruction after uploading a file. +#. TRANS: Avatar upload form instruction after uploading a file. #: actions/avatarsettings.php:345 -msgid "Pick a square area of the image to be your avatar" +#, fuzzy +msgid "Pick a square area of the image to be your avatar." msgstr "请选择一块方形区域作为你的头像" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. @@ -1595,7 +1601,8 @@ msgstr "备份" #. TRANS: Title for submit button to backup an account on the backup account page. #: actions/backupaccount.php:252 -msgid "Backup your account" +#, fuzzy +msgid "Backup your account." msgstr "备份您的帐户" #. TRANS: Client error displayed when blocking a user that has already been blocked. @@ -1635,7 +1642,8 @@ msgstr "否" #. TRANS: Submit button title for 'No' when blocking a user. #: actions/block.php:158 -msgid "Do not block this user" +#, fuzzy +msgid "Do not block this user." msgstr "不要屏蔽这个用户" #. TRANS: Button label on the user block form. @@ -1652,9 +1660,9 @@ msgid "Yes" msgstr "是" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -msgid "Block this user" +#: actions/block.php:165 +#, fuzzy +msgid "Block this user." msgstr "屏蔽这个用户" #. TRANS: Server error displayed when blocking a user fails. @@ -1813,7 +1821,7 @@ msgstr "强烈建议您在删除前 备份您的数据。" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. #: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:262 actions/register.php:440 +#: actions/recoverpassword.php:262 actions/register.php:426 msgid "Confirm" msgstr "密码确认" @@ -1842,13 +1850,13 @@ msgstr "未找到应用。" #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. #: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 +#: actions/showapplication.php:90 msgid "You are not the owner of this application." msgstr "你不是该应用的拥有者。" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:118 +#: actions/newapplication.php:112 actions/showapplication.php:113 #: lib/action.php:1422 msgid "There was a problem with your session token." msgstr "你的 session token 出现了问题。" @@ -1871,12 +1879,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:161 -msgid "Do not delete this application" +#, fuzzy +msgid "Do not delete this application." msgstr "不删除该应用" #. TRANS: Submit button title for 'Yes' when deleting an application. #: actions/deleteapplication.php:167 -msgid "Delete this application" +#, fuzzy +msgid "Delete this application." msgstr "删除这个应用" #. TRANS: Client error when trying to delete group while not logged in. @@ -1929,12 +1939,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. #: actions/deletegroup.php:224 -msgid "Do not delete this group" +#, fuzzy +msgid "Do not delete this group." msgstr "不要删除这个小组" #. TRANS: Submit button title for 'Yes' when deleting a group. #: actions/deletegroup.php:231 -msgid "Delete this group" +#, fuzzy +msgid "Delete this group." msgstr "删除这个小组" #. TRANS: Error message displayed trying to delete a notice while not logged in. @@ -1975,12 +1987,14 @@ msgstr "你确定要删除这条消息吗?" #. TRANS: Submit button title for 'No' when deleting a notice. #: actions/deletenotice.php:159 -msgid "Do not delete this notice" +#, fuzzy +msgid "Do not delete this notice." msgstr "不要删除这个消息" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" +#: actions/deletenotice.php:166 +#, fuzzy +msgid "Delete this notice." msgstr "删除" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. @@ -2014,13 +2028,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when deleting a user. #: actions/deleteuser.php:158 -msgid "Do not delete this user" +#, fuzzy +msgid "Do not delete this user." msgstr "不要删除此用户" #. TRANS: Submit button title for 'Yes' when deleting a user. -#. TRANS: Description of form for deleting a user. -#: actions/deleteuser.php:165 lib/deleteuserform.php:75 -msgid "Delete this user" +#: actions/deleteuser.php:165 +#, fuzzy +msgid "Delete this user." msgstr "删除这个用户" #. TRANS: Message used as title for design settings for the site. @@ -2182,21 +2197,21 @@ msgid "Use defaults" msgstr "使用默认值" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designsettings.php:259 -msgid "Restore default designs" +#: actions/designadminpanel.php:720 +#, fuzzy +msgid "Restore default designs." msgstr "恢复默认外观" #. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designsettings.php:267 -msgid "Reset back to default" +#: actions/designadminpanel.php:728 +#, fuzzy +msgid "Reset back to default." msgstr "重置到默认" #. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designsettings.php:272 -msgid "Save design" +#: actions/designadminpanel.php:736 +#, fuzzy +msgid "Save design." msgstr "保存外观" #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. @@ -2228,7 +2243,7 @@ msgid "You must be logged in to edit an application." msgstr "你必须登录后才能编辑应用。" #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 +#: actions/editapplication.php:83 actions/showapplication.php:83 msgid "No such application." msgstr "没有这个应用。" @@ -2507,7 +2522,7 @@ msgid "Cannot normalize that email address." msgstr "无法识别此电子邮件。" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:393 actions/register.php:212 +#: actions/emailsettings.php:393 actions/register.php:204 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "不是有效的电子邮件。" @@ -2581,18 +2596,21 @@ msgstr "没有发布用的电子邮件地址。" #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:530 actions/emailsettings.php:554 -#: actions/smssettings.php:565 actions/smssettings.php:588 +#: actions/smssettings.php:566 actions/smssettings.php:591 msgid "Could not update user record." msgstr "无法更新用户记录。" #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:534 actions/smssettings.php:568 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:534 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "发布用的电子邮件被删除。" #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:558 actions/smssettings.php:591 +#. TRANS: Confirmation text after updating SMS settings. +#: actions/emailsettings.php:558 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "已添加新的发布用的电子邮件地址。" @@ -2603,7 +2621,8 @@ msgstr "已收藏过此消息!" #. TRANS: Page title for page on which favorite notices can be unfavourited. #: actions/favor.php:95 -msgid "Disfavor favorite" +#, fuzzy +msgid "Disfavor favorite." msgstr "取消收藏" #. TRANS: Page title for first page of favorited notices. @@ -2837,12 +2856,14 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:191 -msgid "Do not block this user from this group" +#, fuzzy +msgid "Do not block this user from this group." msgstr "不要在此小组屏蔽此用户。" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:198 -msgid "Block this user from this group" +#, fuzzy +msgid "Block this user from this group." msgstr "在小组中屏蔽此用户。" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. @@ -3160,7 +3181,8 @@ msgid "Publish a MicroID for my Jabber/Google Talk address." msgstr "公开 Jabber/GTalk 帐号的 MicroID。" #. TRANS: Confirmation message for successful Instant Messaging preferences save. -#: actions/imsettings.php:283 actions/othersettings.php:192 +#. TRANS: Confirmation message after saving preferences. +#: actions/imsettings.php:283 actions/othersettings.php:193 msgid "Preferences saved." msgstr "首选项已保存。" @@ -3556,49 +3578,49 @@ msgstr "保存" msgid "Save license settings" msgstr "保存许可协议设置" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#: actions/login.php:97 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." msgstr "已登录。" -#: actions/login.php:148 +#: actions/login.php:142 msgid "Incorrect username or password." msgstr "用户名或密码不正确。" -#: actions/login.php:154 actions/otp.php:120 +#: actions/login.php:148 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." msgstr "设置用户时出错。你可能没有被认证。" -#: actions/login.php:210 actions/login.php:263 +#: actions/login.php:202 actions/login.php:253 msgid "Login" msgstr "登录" -#: actions/login.php:249 +#: actions/login.php:239 msgid "Login to site" msgstr "登录" -#: actions/login.php:258 actions/register.php:490 +#: actions/login.php:248 actions/register.php:476 msgid "Remember me" msgstr "记住登录状态" -#: actions/login.php:259 actions/register.php:492 +#: actions/login.php:249 actions/register.php:478 msgid "Automatically login in the future; not for shared computers!" msgstr "下次自动登录,请不要在公共电脑上使用此选项!" -#: actions/login.php:269 +#: actions/login.php:259 msgid "Lost or forgotten password?" msgstr "忘记了密码?" -#: actions/login.php:288 +#: actions/login.php:277 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." msgstr "由于安全原因,修改设置前需要输入用户名和密码。" -#: actions/login.php:292 +#: actions/login.php:281 msgid "Login with your username and password." msgstr "使用用户名和密码登录。" -#: actions/login.php:295 +#: actions/login.php:284 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." @@ -3804,30 +3826,30 @@ msgid "You have not registered any applications yet." msgstr "你还没登记任何程序。" #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 +#: actions/oauthconnectionssettings.php:70 msgid "Connected applications" msgstr "关联的应用" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 +#: actions/oauthconnectionssettings.php:81 msgid "The following connections exist for your account." msgstr "你的账号的关联。" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "你不是那个应用的用户。" #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 +#: actions/oauthconnectionssettings.php:181 #, php-format msgid "Unable to revoke access for application: %s." msgstr "不能取消%s应用的访问。" #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3835,14 +3857,14 @@ msgid "" msgstr "你已成功取消了%1$s的访问,access token 中前面的部分是 %2$s。" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "你还没允许任何程序使用你的账户。" #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " @@ -3850,6 +3872,16 @@ msgid "" msgstr "" "你是开发者么?[注册一个 OAuth 客户端应用](%s) 来使用这个 StatusNet 网站。" +#: actions/oembed.php:64 +#, fuzzy, php-format +msgid "\"%s\" not found." +msgstr "API方法没有找到。" + +#: actions/oembed.php:76 +#, fuzzy, php-format +msgid "Notice %s not found." +msgstr "没有找到父级的消息。" + #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." msgstr "消息没有对应用户。" @@ -3859,6 +3891,16 @@ msgstr "消息没有对应用户。" msgid "%1$s's status on %2$s" msgstr "%1$s在%2$s时发的消息" +#: actions/oembed.php:95 +#, fuzzy, php-format +msgid "Attachment %s not found." +msgstr "未找到收件人。" + +#: actions/oembed.php:136 +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:168 #, php-format @@ -3948,17 +3990,21 @@ msgstr "指定的登录 token 无效。" msgid "Login token expired." msgstr "登录 token 已过期。" -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#: actions/outbox.php:57 #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "%1$s的发件箱 - 第%2$d页" +#. TRANS: Title for first page of outbox. #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "%s 的发件箱" -#: actions/outbox.php:104 +#. TRANS: Instructions for outbox. +#: actions/outbox.php:103 msgid "This is your outbox, which lists private messages you have sent." msgstr "这是你的发件箱,包含你发送的私信。" @@ -3984,40 +4030,42 @@ msgstr "旧密码" msgid "New password" msgstr "新密码" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" +#: actions/passwordsettings.php:109 actions/register.php:423 +msgid "6 or more characters." msgstr "6 个或更多字符" -#: actions/passwordsettings.php:113 -msgid "Same as password above" +#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#: actions/passwordsettings.php:113 actions/recoverpassword.php:264 +#: actions/register.php:427 +msgid "Same as password above." msgstr "与上面相同的密码" #: actions/passwordsettings.php:117 msgid "Change" msgstr "修改" -#: actions/passwordsettings.php:154 actions/register.php:238 +#: actions/passwordsettings.php:153 actions/register.php:230 msgid "Password must be 6 or more characters." msgstr "密码必须包含 6 个或更多字符。" -#: actions/passwordsettings.php:157 actions/register.php:241 +#: actions/passwordsettings.php:156 actions/register.php:233 msgid "Passwords don't match." msgstr "密码不匹配。" -#: actions/passwordsettings.php:165 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "旧密码不正确" -#: actions/passwordsettings.php:181 +#: actions/passwordsettings.php:180 msgid "Error saving user; invalid." msgstr "保存用户时出错;无效。" -#: actions/passwordsettings.php:186 -msgid "Can't save new password." +#. TRANS: Reset password form validation error message. +#: actions/passwordsettings.php:185 actions/recoverpassword.php:418 +msgid "Cannot save new password." msgstr "无法保存新密码。" -#. TRANS: Title for password recovery page in password saved mode. -#: actions/passwordsettings.php:192 actions/recoverpassword.php:229 +#: actions/passwordsettings.php:191 msgid "Password saved." msgstr "密码已保存。" @@ -4340,14 +4388,14 @@ msgid "Profile information" msgstr "个人信息" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:109 actions/register.php:433 +#: actions/profilesettings.php:109 actions/register.php:419 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1 到 64 个小写字母或数字,不包含标点或空格。" #. TRANS: Field label in form for profile settings. #. TRANS: Label for full group name (dt). Text hidden by default. #. TRANS: DT for full name in a profile. -#: actions/profilesettings.php:113 actions/register.php:455 +#: actions/profilesettings.php:113 actions/register.php:441 #: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:150 lib/userprofile.php:156 msgid "Full name" @@ -4355,48 +4403,49 @@ msgstr "全名" #. TRANS: Field label in form for profile settings. #. TRANS: Form input field label. -#: actions/profilesettings.php:118 actions/register.php:460 +#: actions/profilesettings.php:118 actions/register.php:446 #: lib/applicationeditform.php:236 lib/groupeditform.php:154 msgid "Homepage" msgstr "主页" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:121 +#: actions/profilesettings.php:121 actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site." msgstr "你的主页、博客或在其他网站的URL。" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:129 actions/register.php:471 +#: actions/profilesettings.php:129 actions/register.php:457 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" msgstr[0] "用不超过%d个字符描述你自己和你的兴趣" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:135 actions/register.php:476 +#: actions/profilesettings.php:135 actions/register.php:462 msgid "Describe yourself and your interests" msgstr "描述你自己和你的兴趣" #. TRANS: Text area label in form for profile settings where users can provide. #. TRANS: their biography. -#: actions/profilesettings.php:139 actions/register.php:478 +#: actions/profilesettings.php:139 actions/register.php:464 msgid "Bio" msgstr "自述" #. TRANS: Field label in form for profile settings. #. TRANS: Label for group location (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for location in a profile. -#: actions/profilesettings.php:145 actions/register.php:483 +#: actions/profilesettings.php:145 actions/register.php:469 #: actions/showgroup.php:265 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:173 +#: actions/userauthorization.php:174 lib/groupeditform.php:173 #: lib/userprofile.php:172 msgid "Location" msgstr "位置" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:148 actions/register.php:485 +#: actions/profilesettings.php:148 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "你的地理位置,格式类似\"城市,省份,国家\"" @@ -4415,8 +4464,10 @@ msgstr "标签" #. TRANS: Tooltip for field label in form for profile settings. #: actions/profilesettings.php:164 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "你的标签 (字母、数字、“-”、“. ”和“ _”), 以逗号或空格分隔" #. TRANS: Dropdownlist label in form for profile settings. @@ -4426,7 +4477,8 @@ msgstr "语言" #. TRANS: Tooltip for dropdown list label in form for profile settings. #: actions/profilesettings.php:171 -msgid "Preferred language" +#, fuzzy +msgid "Preferred language." msgstr "首选语言" #. TRANS: Dropdownlist label in form for profile settings. @@ -4441,14 +4493,15 @@ msgstr "你一般处于哪个时区?" #. TRANS: Checkbox label in form for profile settings. #: actions/profilesettings.php:189 +#, fuzzy msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "自动关注任何关注我的人 (这个选项适合机器人)" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:258 actions/register.php:229 +#: actions/profilesettings.php:258 actions/register.php:221 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4466,9 +4519,9 @@ msgstr "语言过长(不能超过50个字符)。" #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:291 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:291 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"." msgstr "无效的标签:\"%s\"。" #. TRANS: Server error thrown when user profile settings could not be updated to @@ -4699,6 +4752,12 @@ msgstr "恢复密码" msgid "Password recovery requested" msgstr "已请求密码恢复" +#. TRANS: Title for password recovery page in password saved mode. +#: actions/recoverpassword.php:229 +#, fuzzy +msgid "Password saved" +msgstr "密码已保存。" + #. TRANS: Title for password recovery page when an unknown action has been specified. #: actions/recoverpassword.php:232 msgid "Unknown action" @@ -4709,11 +4768,6 @@ msgstr "未知动作" msgid "6 or more characters, and do not forget it!" msgstr "至少6个字符,还有,别忘记它!" -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. -#: actions/recoverpassword.php:264 actions/register.php:441 -msgid "Same as password above." -msgstr "与上面相同的密码" - #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. #: actions/recoverpassword.php:268 lib/designsettings.php:264 @@ -4763,13 +4817,8 @@ msgstr "密码必须是 6 位或更多字符。" msgid "Password and confirmation do not match." msgstr "密码和确认密码不匹配。" -#. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:418 -msgid "Cannot save new password." -msgstr "无法保存新密码。" - #. TRANS: Server error displayed when something does wrong with the user object during password reset. -#: actions/recoverpassword.php:426 actions/register.php:256 +#: actions/recoverpassword.php:426 actions/register.php:248 msgid "Error setting user." msgstr "保存用户设置时出错。" @@ -4778,91 +4827,92 @@ msgstr "保存用户设置时出错。" msgid "New password successfully saved. You are now logged in." msgstr "新密码已保存,你现在已登录。" -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#: actions/register.php:87 actions/register.php:188 actions/register.php:399 msgid "Sorry, only invited people can register." msgstr "对不起,只有被邀请的用户才能注册。" -#: actions/register.php:99 +#: actions/register.php:94 msgid "Sorry, invalid invitation code." msgstr "对不起,无效的邀请码。" -#: actions/register.php:119 +#: actions/register.php:113 msgid "Registration successful" msgstr "注册成功" -#: actions/register.php:121 actions/register.php:511 +#: actions/register.php:115 actions/register.php:497 msgid "Register" msgstr "注册" -#: actions/register.php:142 +#: actions/register.php:135 msgid "Registration not allowed." msgstr "不允许注册。" -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." +#: actions/register.php:201 +#, fuzzy +msgid "You cannot register if you don't agree to the license." msgstr "你必须同意许可协议才能注册。" -#: actions/register.php:218 +#: actions/register.php:210 msgid "Email address already exists." msgstr "电子邮件地址已存在。" -#: actions/register.php:251 actions/register.php:273 +#: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." msgstr "用户名或密码不正确。" -#: actions/register.php:351 +#: actions/register.php:340 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"link up to friends and colleagues." msgstr "" "你可以通过此表单建立一个新的账户。然后你就可以发布消息并与朋友和同事们保持联" "系。 " -#: actions/register.php:437 -msgid "6 or more characters." -msgstr "6 个或更多字符" - #. TRANS: Link description in user account settings menu. -#: actions/register.php:445 actions/register.php:449 +#: actions/register.php:431 actions/register.php:435 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "电子邮件" -#: actions/register.php:446 actions/register.php:450 -msgid "Used only for updates, announcements, and password recovery" +#: actions/register.php:432 actions/register.php:436 +#, fuzzy +msgid "Used only for updates, announcements, and password recovery." msgstr "只用于更新、通知及密码恢复" -#: actions/register.php:457 -msgid "Longer name, preferably your \"real\" name" +#: actions/register.php:443 +#, fuzzy +msgid "Longer name, preferably your \"real\" name." msgstr "更长的名字,最好是“真实姓名”" -#: actions/register.php:462 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "你的主页、博客或在其他网站的URL" +#: actions/register.php:471 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "你的地理位置,格式类似\"城市,省份,国家\"" -#: actions/register.php:523 +#: actions/register.php:510 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "我明白%1$s的信息是私人且保密的。" -#: actions/register.php:533 +#: actions/register.php:520 #, php-format msgid "My text and files are copyright by %1$s." msgstr "我的文字和文件的版权归%1$s所有。" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:537 +#: actions/register.php:524 msgid "My text and files remain under my own copyright." msgstr "我的文字和文件的版权由我自己保留。" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:540 +#: actions/register.php:527 msgid "All rights reserved." msgstr "保留所有权利。" #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:545 +#: actions/register.php:532 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4871,7 +4921,7 @@ msgstr "" "我的文字和文件在%s下提供,除了如下隐私内容:密码、电子邮件地址、IM 地址和电话" "号码。" -#: actions/register.php:588 +#: actions/register.php:573 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4901,7 +4951,7 @@ msgstr "" "\n" "感谢你的注册,希望你喜欢这个服务。" -#: actions/register.php:612 +#: actions/register.php:597 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -4931,7 +4981,8 @@ msgid "User nickname" msgstr "昵称" #: actions/remotesubscribe.php:129 -msgid "Nickname of the user you want to follow" +#, fuzzy +msgid "Nickname of the user you want to follow." msgstr "希望关注的用户昵称" #: actions/remotesubscribe.php:132 @@ -4939,7 +4990,8 @@ msgid "Profile URL" msgstr "资料页 URL" #: actions/remotesubscribe.php:133 -msgid "URL of your profile on another compatible microblogging service" +#, fuzzy +msgid "URL of your profile on another compatible microblogging service." msgstr "你在其他兼容的微博客服务的资料页 URL" #. TRANS: Link text for link that will subscribe to a remote profile. @@ -4949,7 +5001,8 @@ msgid "Subscribe" msgstr "关注" #: actions/remotesubscribe.php:158 -msgid "Invalid profile URL (bad format)" +#, fuzzy +msgid "Invalid profile URL (bad format)." msgstr "无效的用户 URL (格式错误)" #: actions/remotesubscribe.php:167 @@ -5138,7 +5191,7 @@ msgstr "你不能在这个网站移除用户角色。" msgid "User doesn't have this role." msgstr "用户没有此权限。" -#: actions/rsd.php:146 actions/version.php:159 +#: actions/rsd.php:142 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -5180,93 +5233,93 @@ msgstr "打开 sessions 的调试输出。" msgid "Save site settings" msgstr "保存访问设置" -#: actions/showapplication.php:82 +#: actions/showapplication.php:78 msgid "You must be logged in to view an application." msgstr "你必须登录才能创建小组。" -#: actions/showapplication.php:157 +#: actions/showapplication.php:151 msgid "Application profile" msgstr "未找到应用。" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:177 +#: actions/showapplication.php:153 lib/applicationeditform.php:177 msgid "Icon" msgstr "图标" #. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 +#: actions/showapplication.php:163 actions/version.php:197 #: lib/applicationeditform.php:190 msgid "Name" msgstr "名称" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 +#: actions/showapplication.php:172 lib/applicationeditform.php:227 msgid "Organization" msgstr "组织名称必填。" #. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 +#: actions/showapplication.php:181 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:168 msgid "Description" msgstr "描述" #. TRANS: Header for group statistics on a group page (h2). #. TRANS: H2 text for user statistics. -#: actions/showapplication.php:192 actions/showgroup.php:460 +#: actions/showapplication.php:186 actions/showgroup.php:460 #: lib/profileaction.php:205 msgid "Statistics" msgstr "统计" -#: actions/showapplication.php:203 +#: actions/showapplication.php:197 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "由%1$s创建 - 默认访问权限%2$s - %3$d个用户" -#: actions/showapplication.php:213 +#: actions/showapplication.php:207 msgid "Application actions" msgstr "应用程序动作" -#: actions/showapplication.php:236 +#: actions/showapplication.php:230 msgid "Reset key & secret" msgstr "重置key和secret" #. TRANS: Title of form for deleting a user. -#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: actions/showapplication.php:246 lib/deletegroupform.php:121 #: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "删除" -#: actions/showapplication.php:261 +#: actions/showapplication.php:255 msgid "Application info" msgstr "应用程序信息" -#: actions/showapplication.php:263 +#: actions/showapplication.php:257 msgid "Consumer key" msgstr "Consumer key" -#: actions/showapplication.php:268 +#: actions/showapplication.php:262 msgid "Consumer secret" msgstr "Consumer secret" -#: actions/showapplication.php:273 +#: actions/showapplication.php:267 msgid "Request token URL" msgstr "请求令牌URL" -#: actions/showapplication.php:278 +#: actions/showapplication.php:272 msgid "Access token URL" msgstr "访问令牌URL" -#: actions/showapplication.php:283 +#: actions/showapplication.php:277 msgid "Authorize URL" msgstr "授权URL" -#: actions/showapplication.php:288 +#: actions/showapplication.php:282 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "提示:我们支持HMAC-SHA1签名。我们不支持明文的签名方法。" -#: actions/showapplication.php:309 +#: actions/showapplication.php:302 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "你确定要重置你的consumer key和secret吗?" @@ -5355,16 +5408,18 @@ msgid "Group profile" msgstr "小组资料" #. TRANS: Label for group URL (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT for URL in a profile. #: actions/showgroup.php:273 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:186 +#: actions/userauthorization.php:184 lib/userprofile.php:186 msgid "URL" msgstr "URL 互联网地址" #. TRANS: Label for group description or group note (dt). Text hidden by default. +#. TRANS: DT element on Authorise Subscription page where bio is displayed. #. TRANS: DT for note in a profile. #: actions/showgroup.php:285 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:204 +#: actions/userauthorization.php:197 lib/userprofile.php:204 msgid "Note" msgstr "注释" @@ -5509,7 +5564,7 @@ msgid "%1$s tagged %2$s" msgstr "%1$s 的标签 %2$s" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, php-format msgid "%1$s tagged %2$s, page %3$d" @@ -5750,7 +5805,8 @@ msgstr "整个网站的公告文字(最长255字符;可使用HTML)" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 -msgid "Save site notice" +#, fuzzy +msgid "Save site notice." msgstr "保存网站公告" #. TRANS: Title for SMS settings. @@ -5808,7 +5864,8 @@ msgstr "SMS 电话号码" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:152 -msgid "Phone number, no punctuation or spaces, with area code" +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code." msgstr "电话号码,不带标点或空格,包含地区代码" #. TRANS: Form legend for SMS preferences form. @@ -6137,8 +6194,9 @@ msgstr "将%s加为标签" msgid "User profile" msgstr "用户页面" +#. TRANS: DT element on Authorise Subscription page. #. TRANS: DT element in area for user avatar. -#: actions/tagother.php:81 actions/userauthorization.php:132 +#: actions/tagother.php:81 actions/userauthorization.php:138 #: lib/userprofile.php:108 msgid "Photo" msgstr "相片" @@ -6154,6 +6212,11 @@ msgid "" msgstr "" "给这个用户加注标签 (字母letters, 数字numbers, -, ., and _), 逗号或空格分隔" +#: actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "无效的标签:\"%s\"。" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -6187,7 +6250,7 @@ msgstr "请求不含资料页 ID。" msgid "Unsubscribed" msgstr "已取消关注" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -6217,8 +6280,8 @@ msgstr "无效的欢迎文字。最大长度255个字符。" #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. #: actions/useradminpanel.php:166 -#, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +#, fuzzy, php-format +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "无效的默认关注:“%1$s”不是一个用户。" #. TRANS: Link description in user account settings menu. @@ -6278,54 +6341,70 @@ msgstr "是否允许用户发送注册邀请。" #. TRANS: Title for button to save user settings in user admin panel. #: actions/useradminpanel.php:302 -msgid "Save user settings" +#, fuzzy +msgid "Save user settings." msgstr "保存用户设置" -#: actions/userauthorization.php:105 +#. TRANS: Page title. +#: actions/userauthorization.php:109 msgid "Authorize subscription" msgstr "授权关注" -#: actions/userauthorization.php:110 +#. TRANS: Page notice on "Auhtorize subscription" page. +#: actions/userauthorization.php:115 +#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +"click \"Reject\"." msgstr "" "请检查这些详细信息,确认希望关注此用户的消息。如果你不想关注,请点击\\\"拒绝" "\\\"。" +#. TRANS: DT element on Authorise Subscription page where license is displayed. #. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 +#: actions/userauthorization.php:207 actions/version.php:167 #: lib/adminpanelaction.php:403 msgid "License" msgstr "许可协议" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:229 +#, fuzzy +msgctxt "BUTTON" msgid "Accept" msgstr "接受" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:231 +#, fuzzy +msgid "Subscribe to this user." msgstr "关注这个用户" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#: actions/userauthorization.php:233 +#, fuzzy +msgctxt "BUTTON" msgid "Reject" msgstr "拒绝" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" +#. TRANS: Title for button on Authorise Subscription page. +#: actions/userauthorization.php:235 +#, fuzzy +msgid "Reject this subscription." msgstr "拒绝此关注" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. +#: actions/userauthorization.php:248 msgid "No authorization request!" msgstr "没有授权请求!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. +#: actions/userauthorization.php:271 msgid "Subscription authorized" msgstr "已授权关注" -#: actions/userauthorization.php:256 +#: actions/userauthorization.php:274 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " @@ -6334,50 +6413,74 @@ msgstr "" "已授权关注,但是没有回传 URL。请到网站查看如何授权关注。你的 subscription " "token 是:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. +#: actions/userauthorization.php:285 msgid "Subscription rejected" msgstr "关注已拒绝" -#: actions/userauthorization.php:268 +#: actions/userauthorization.php:288 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " "subscription." msgstr "关注已拒绝,但是没有回传 URL。请到网站查看如何完全拒绝关注。" -#: actions/userauthorization.php:303 -#, php-format -msgid "Listener URI ‘%s’ not found here." +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#: actions/userauthorization.php:325 +#, fuzzy, php-format +msgid "Listener URI \"%s\" not found here." msgstr "Listener URI ‘%s’ 没有找到。" -#: actions/userauthorization.php:308 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:332 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is too long." msgstr "Listenee URI ‘%s’ 过长。" -#: actions/userauthorization.php:314 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#: actions/userauthorization.php:340 +#, fuzzy, php-format +msgid "Listenee URI \"%s\" is a local user." msgstr "Listenee URI ‘%s’ 是一个本地用户。" -#: actions/userauthorization.php:329 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#: actions/userauthorization.php:358 +#, fuzzy, php-format +msgid "Profile URL \"%s\" is for a local user." msgstr "个人信息 URL “%s” 是为本地用户的。" -#: actions/userauthorization.php:345 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/userauthorization.php:368 +#, fuzzy, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "Listenee stream 许可证“‘%1$s” 与本网站的许可证 “%2$s”不兼容。" + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:378 +#, fuzzy, php-format +msgid "Avatar URL \"%s\" is not valid." msgstr "头像地址‘%s’无效。" -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:385 +#, fuzzy, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "无法读取头像 URL '%s'。" -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#: actions/userauthorization.php:392 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "头像 URL ‘%s’ 图像格式错误。" #. TRANS: Page title for profile design page. @@ -7550,6 +7653,11 @@ msgstr "不允许更改密码。" msgid "Block" msgstr "屏蔽" +#. TRANS: Description of the form to block a user. +#: lib/blockform.php:79 +msgid "Block this user" +msgstr "屏蔽这个用户" + #. TRANS: Title for command results. #: lib/channel.php:160 lib/channel.php:181 msgid "Command results" @@ -7992,6 +8100,11 @@ msgstr "被授权已连接的应用" msgid "Database error" msgstr "数据库错误" +#. TRANS: Description of form for deleting a user. +#: lib/deleteuserform.php:75 +msgid "Delete this user" +msgstr "删除这个用户" + #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #: lib/designsettings.php:108 @@ -8026,6 +8139,21 @@ msgstr "改变颜色" msgid "Use defaults" msgstr "使用默认值" +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: lib/designsettings.php:259 +msgid "Restore default designs" +msgstr "恢复默认外观" + +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: lib/designsettings.php:267 +msgid "Reset back to default" +msgstr "重置到默认" + +#. TRANS: Title for button on profile design page to save settings. +#: lib/designsettings.php:272 +msgid "Save design" +msgstr "保存外观" + #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:405 lib/designsettings.php:427 @@ -8132,9 +8260,8 @@ msgid "Grant this user the \"%s\" role" msgstr "给这个用户添加\\\"%s\\\"权限" #: lib/groupeditform.php:147 -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1 到 64 个小写字母或数字,不包含标点或空格。" +msgstr "1 到 64 个小写字母或数字,不包含标点或空格" #: lib/groupeditform.php:156 msgid "URL of the homepage or blog of the group or topic." @@ -8145,10 +8272,10 @@ msgid "Describe the group or topic" msgstr "小组或主题的描述" #: lib/groupeditform.php:163 -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d character or less" msgid_plural "Describe the group or topic in %d characters or less" -msgstr[0] "用不超过%d个字符描述你的应用" +msgstr[0] "用不超过%d个字符描述下这个小组或者主题" #: lib/groupeditform.php:175 msgid "" @@ -8888,6 +9015,10 @@ msgstr "回复" msgid "Reply" msgstr "回复" +#: lib/noticelist.php:673 +msgid "Delete this notice" +msgstr "删除" + #: lib/noticelist.php:691 msgid "Notice repeated" msgstr "消息已转发" @@ -9168,6 +9299,10 @@ msgstr "邀请" msgid "Invite friends and colleagues to join you on %s" msgstr "邀请朋友和同事来%s一起和你交流" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "关注这个用户" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9429,3 +9564,15 @@ msgstr "不合法的XML, 缺少XRD根" #, php-format msgid "Getting backup from file '%s'." msgstr "从文件'%s'获取备份。" + +#~ msgid "6 or more characters" +#~ msgstr "6 个或更多字符" + +#~ msgid "Same as password above" +#~ msgstr "与上面相同的密码" + +#~ msgid "Can't save new password." +#~ msgstr "无法保存新密码。" + +#~ msgid "URL of your homepage, blog, or profile on another site" +#~ msgstr "你的主页、博客或在其他网站的URL" diff --git a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po new file mode 100644 index 0000000000..c9281c84df --- /dev/null +++ b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po @@ -0,0 +1,83 @@ +# Translation of StatusNet - BitlyUrl to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Toniher +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BitlyUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:27:59+0000\n" +"Language-Team: Catalan \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-01-29 22:19:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-bitlyurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BitlyUrlPlugin.php:48 +msgid "You must specify a serviceUrl for bit.ly shortening." +msgstr "Heu d'especificar un URL de servei per a l'escurçament de bit.ly" + +#: BitlyUrlPlugin.php:175 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Fa servir el servei d'escurçament d'URL %1$s." + +#: BitlyUrlPlugin.php:216 +msgid "bit.ly" +msgstr "bit.ly" + +#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54 +msgid "bit.ly URL shortening" +msgstr "Escurçament d'URL bit.ly" + +#: bitlyadminpanelaction.php:65 +msgid "" +"URL shortening with bit.ly requires [a bit.ly account and API key](http://" +"bit.ly/a/your_api_key). This verifies that this is an authorized account, " +"and allow you to use bit.ly's tracking features and custom domains." +msgstr "" +"L'escurçament d'URL amb bit.ly necessita [un compte i clau API de bit.ly]" +"(http://bit.ly/a/your_api_key). Això verifica que és un compte autoritzat, i " +"permet fer servir les característiques de seguiment de bit.ly i els dominis " +"personalitzats." + +#: bitlyadminpanelaction.php:132 +msgid "Invalid login. Max length is 255 characters." +msgstr "Inici de sessió no vàlid. La longitud màxima és de 255 caràcters." + +#: bitlyadminpanelaction.php:138 +msgid "Invalid API key. Max length is 255 characters." +msgstr "Clau API no vàlida. La longitud màxima és de 255 caràcters." + +#: bitlyadminpanelaction.php:191 +msgid "Credentials" +msgstr "Credencials" + +#: bitlyadminpanelaction.php:199 +msgid "Leave these empty to use global default credentials." +msgstr "Deixa-ho en blanc i fes servir les credencials per defecte globals." + +#: bitlyadminpanelaction.php:202 +msgid "If you leave these empty, bit.ly will be unavailable to users." +msgstr "Si ho deixeu en blanc, el bit.ly no serà disponible per als usuaris." + +#: bitlyadminpanelaction.php:209 +msgid "Login name" +msgstr "Nom de sessió" + +#: bitlyadminpanelaction.php:218 +msgid "API key" +msgstr "Clau API" + +#: bitlyadminpanelaction.php:236 +msgid "Save bit.ly settings" +msgstr "Desa els paràmetres de bit.ly" diff --git a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..23077e5b75 --- /dev/null +++ b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - EmailAuthentication to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Toniher +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:28:10+0000\n" +"Language-Team: Catalan \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-01-29 22:24:10+0000\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-emailauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: EmailAuthenticationPlugin.php:60 +msgid "" +"The Email Authentication plugin allows users to login using their email " +"address." +msgstr "" +"El connector d'autenticació per correu electrònic permet als usuaris a " +"iniciar una sessió fent servir l'adreça electrònica." diff --git a/plugins/EmailSummary/EmailSummaryPlugin.php b/plugins/EmailSummary/EmailSummaryPlugin.php index 58c40e43c5..c37e4864d1 100644 --- a/plugins/EmailSummary/EmailSummaryPlugin.php +++ b/plugins/EmailSummary/EmailSummaryPlugin.php @@ -62,15 +62,15 @@ class EmailSummaryPlugin extends Plugin array(new ColumnDef('user_id', 'integer', null, false, 'PRI'), new ColumnDef('send_summary', 'tinyint', null, - false, null, 1), + false, null, 1), new ColumnDef('last_summary_id', 'integer', null, - true), + true), new ColumnDef('created', 'datetime', null, - false), + false), new ColumnDef('modified', 'datetime', null, - false), - ) - ); + false), + ) + ); return true; } @@ -88,17 +88,17 @@ class EmailSummaryPlugin extends Plugin $dir = dirname(__FILE__); switch ($cls) - { - case 'SiteEmailSummaryHandler': - case 'UserEmailSummaryHandler': - include_once $dir . '/'.strtolower($cls).'.php'; - return false; - case 'Email_summary_status': - include_once $dir . '/'.$cls.'.php'; + { + case 'SiteEmailSummaryHandler': + case 'UserEmailSummaryHandler': + include_once $dir . '/'.strtolower($cls).'.php'; return false; - default: - return true; - } + case 'Email_summary_status': + include_once $dir . '/'.$cls.'.php'; + return false; + default: + return true; + } } /** @@ -131,9 +131,9 @@ class EmailSummaryPlugin extends Plugin function onEndInitializeQueueManager($qm) { - $qm->connect('sitesum', 'SiteEmailSummaryHandler'); - $qm->connect('usersum', 'UserEmailSummaryHandler'); - return true; + $qm->connect('sitesum', 'SiteEmailSummaryHandler'); + $qm->connect('usersum', 'UserEmailSummaryHandler'); + return true; } /** @@ -146,15 +146,15 @@ class EmailSummaryPlugin extends Plugin function onEndEmailFormData($action) { - $user = common_current_user(); + $user = common_current_user(); - $action->elementStart('li'); - $action->checkbox('emailsummary', - // TRANS: Checkbox label in e-mail preferences form. - _('Send me a periodic summary of updates from my network.'), - Email_summary_status::getSendSummary($user->id)); - $action->elementEnd('li'); - return true; + $action->elementStart('li'); + $action->checkbox('emailsummary', + // TRANS: Checkbox label in e-mail preferences form. + _('Send me a periodic summary of updates from my network.'), + Email_summary_status::getSendSummary($user->id)); + $action->elementEnd('li'); + return true; } /** @@ -167,36 +167,36 @@ class EmailSummaryPlugin extends Plugin function onEndEmailSaveForm($action) { - $sendSummary = $action->boolean('emailsummary'); + $sendSummary = $action->boolean('emailsummary'); - $user = common_current_user(); + $user = common_current_user(); - if (!empty($user)) { + if (!empty($user)) { - $ess = Email_summary_status::staticGet('user_id', $user->id); + $ess = Email_summary_status::staticGet('user_id', $user->id); - if (empty($ess)) { + if (empty($ess)) { - $ess = new Email_summary_status(); + $ess = new Email_summary_status(); - $ess->user_id = $user->id; - $ess->send_summary = $sendSummary; - $ess->created = common_sql_now(); - $ess->modified = common_sql_now(); + $ess->user_id = $user->id; + $ess->send_summary = $sendSummary; + $ess->created = common_sql_now(); + $ess->modified = common_sql_now(); - $ess->insert(); + $ess->insert(); - } else { + } else { - $orig = clone($ess); + $orig = clone($ess); - $ess->send_summary = $sendSummary; - $ess->modified = common_sql_now(); + $ess->send_summary = $sendSummary; + $ess->modified = common_sql_now(); - $ess->update($orig); - } - } + $ess->update($orig); + } + } - return true; + return true; } } diff --git a/plugins/EmailSummary/Email_summary_status.php b/plugins/EmailSummary/Email_summary_status.php index 5b5b231e34..7072370faf 100644 --- a/plugins/EmailSummary/Email_summary_status.php +++ b/plugins/EmailSummary/Email_summary_status.php @@ -82,10 +82,10 @@ class Email_summary_status extends Memcached_DataObject function table() { return array('user_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, - 'send_summary' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, - 'last_summary_id' => DB_DATAOBJECT_INT, - 'created' => DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL, - 'modified' => DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL); + 'send_summary' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + 'last_summary_id' => DB_DATAOBJECT_INT, + 'created' => DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL, + 'modified' => DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL); } /** @@ -139,11 +139,11 @@ class Email_summary_status extends Memcached_DataObject { $ess = Email_summary_status::staticGet('user_id', $user_id); - if (!empty($ess)) { - return $ess->send_summary; - } else { - return 1; - } + if (!empty($ess)) { + return $ess->send_summary; + } else { + return 1; + } } /** @@ -158,10 +158,10 @@ class Email_summary_status extends Memcached_DataObject { $ess = Email_summary_status::staticGet('user_id', $user_id); - if (!empty($ess)) { - return $ess->last_summary_id; - } else { - return null; - } + if (!empty($ess)) { + return $ess->last_summary_id; + } else { + return null; + } } } diff --git a/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po new file mode 100644 index 0000000000..92a309b7f1 --- /dev/null +++ b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - EmailSummary to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Toniher +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailSummary\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:28:10+0000\n" +"Language-Team: Catalan \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-02-14 17:19:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-emailsummary\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: EmailSummaryPlugin.php:120 +msgid "Send an email summary of the inbox to users." +msgstr "Envia un resum de correu a la safata d'entrada dels usuaris." diff --git a/plugins/EmailSummary/sendemailsummary.php b/plugins/EmailSummary/sendemailsummary.php index 37bfdcfbd1..aad79c7360 100644 --- a/plugins/EmailSummary/sendemailsummary.php +++ b/plugins/EmailSummary/sendemailsummary.php @@ -1,47 +1,59 @@ #!/usr/bin/env php -. - */ + . + */ define('INSTALLDIR', realpath(dirname(__FILE__) . '/../..')); -$shortoptions = 'i:n:a'; -$longoptions = array('id=', 'nickname=', 'all'); +$shortoptions = 'i:n:au'; +$longoptions = array('id=', 'nickname=', 'all', 'universe'); $helptext = <<enqueue($user->id, 'usersum'); -} catch (NoUserArgumentException $nuae) { - $qm->enqueue(null, 'sitesum'); +if (have_option('u', 'universe')) { + $sn = new Status_network(); + if ($sn->find()) { + while ($sn->fetch()) { + $server = $sn->getServerName(); + StatusNet::init($server); + // Different queue manager, maybe! + $qm = QueueManager::get(); + $qm->enqueue(null, 'sitesum'); + } + } +} else { + $qm = QueueManager::get(); + // enqueue summary for user or all users + try { + $user = getUser(); + $qm->enqueue($user->id, 'usersum'); + } catch (NoUserArgumentException $nuae) { + $qm->enqueue(null, 'sitesum'); + } } diff --git a/plugins/EmailSummary/siteemailsummaryhandler.php b/plugins/EmailSummary/siteemailsummaryhandler.php index 595c3267a1..1c0d4997de 100644 --- a/plugins/EmailSummary/siteemailsummaryhandler.php +++ b/plugins/EmailSummary/siteemailsummaryhandler.php @@ -70,27 +70,27 @@ class SiteEmailSummaryHandler extends QueueHandler function handle($object) { - $qm = QueueManager::get(); + $qm = QueueManager::get(); - try { - // Enqueue a summary for all users + try { + // Enqueue a summary for all users - $user = new User(); - $user->find(); + $user = new User(); + $user->find(); - while ($user->fetch()) { - try { - $qm->enqueue($user->id, 'usersum'); - } catch (Exception $e) { - common_log(LOG_WARNING, $e->getMessage()); - continue; - } - } - } catch (Exception $e) { - common_log(LOG_WARNING, $e->getMessage()); - } + while ($user->fetch()) { + try { + $qm->enqueue($user->id, 'usersum'); + } catch (Exception $e) { + common_log(LOG_WARNING, $e->getMessage()); + continue; + } + } + } catch (Exception $e) { + common_log(LOG_WARNING, $e->getMessage()); + } - return true; + return true; } } diff --git a/plugins/EmailSummary/useremailsummaryhandler.php b/plugins/EmailSummary/useremailsummaryhandler.php index c6079d5371..7372a27943 100644 --- a/plugins/EmailSummary/useremailsummaryhandler.php +++ b/plugins/EmailSummary/useremailsummaryhandler.php @@ -72,155 +72,155 @@ class UserEmailSummaryHandler extends QueueHandler function handle($user_id) { - // Skip if they've asked not to get summaries + // Skip if they've asked not to get summaries - $ess = Email_summary_status::staticGet('user_id', $user_id); + $ess = Email_summary_status::staticGet('user_id', $user_id); - if (!empty($ess) && !$ess->send_summary) { - common_log(LOG_INFO, sprintf('Not sending email summary for user %s by request.', $user_id)); - return true; - } + if (!empty($ess) && !$ess->send_summary) { + common_log(LOG_INFO, sprintf('Not sending email summary for user %s by request.', $user_id)); + return true; + } - $since_id = null; + $since_id = null; - if (!empty($ess)) { - $since_id = $ess->last_summary_id; - } + if (!empty($ess)) { + $since_id = $ess->last_summary_id; + } - $user = User::staticGet('id', $user_id); + $user = User::staticGet('id', $user_id); - if (empty($user)) { - common_log(LOG_INFO, sprintf('Not sending email summary for user %s; no such user.', $user_id)); - return true; - } + if (empty($user)) { + common_log(LOG_INFO, sprintf('Not sending email summary for user %s; no such user.', $user_id)); + return true; + } - if (empty($user->email)) { - common_log(LOG_INFO, sprintf('Not sending email summary for user %s; no email address.', $user_id)); - return true; - } + if (empty($user->email)) { + common_log(LOG_INFO, sprintf('Not sending email summary for user %s; no email address.', $user_id)); + return true; + } - $profile = $user->getProfile(); + $profile = $user->getProfile(); - if (empty($profile)) { - common_log(LOG_WARNING, sprintf('Not sending email summary for user %s; no profile.', $user_id)); - return true; - } + if (empty($profile)) { + common_log(LOG_WARNING, sprintf('Not sending email summary for user %s; no profile.', $user_id)); + return true; + } - $notice = $user->ownFriendsTimeline(0, self::MAX_NOTICES, $since_id); + $notice = $user->ownFriendsTimeline(0, self::MAX_NOTICES, $since_id); - if (empty($notice) || $notice->N == 0) { - common_log(LOG_WARNING, sprintf('Not sending email summary for user %s; no notices.', $user_id)); - return true; - } + if (empty($notice) || $notice->N == 0) { + common_log(LOG_WARNING, sprintf('Not sending email summary for user %s; no notices.', $user_id)); + return true; + } - // XXX: This is risky fingerpoken in der objektvars, but I didn't feel like - // figuring out a better way. -ESP + // XXX: This is risky fingerpoken in der objektvars, but I didn't feel like + // figuring out a better way. -ESP - $new_top = null; + $new_top = null; - if ($notice instanceof ArrayWrapper) { - $new_top = $notice->_items[0]->id; - } + if ($notice instanceof ArrayWrapper) { + $new_top = $notice->_items[0]->id; + } - $out = new XMLStringer(); + $out = new XMLStringer(); - $out->raw(sprintf(_('

Recent updates from %1s for %2s:

'), - common_config('site', 'name'), - $profile->getBestName())); + $out->raw(sprintf(_('

Recent updates from %1s for %2s:

'), + common_config('site', 'name'), + $profile->getBestName())); - $out->elementStart('table', array('width' => '541px', 'style' => 'border: none')); + $out->elementStart('table', array('width' => '541px', 'style' => 'border: none')); - while ($notice->fetch()) { + while ($notice->fetch()) { - $profile = Profile::staticGet('id', $notice->profile_id); + $profile = Profile::staticGet('id', $notice->profile_id); - if (empty($profile)) { - continue; - } + if (empty($profile)) { + continue; + } - $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE); - - $out->elementStart('tr'); - $out->elementStart('td', array('width' => AVATAR_STREAM_SIZE, - 'height' => AVATAR_STREAM_SIZE, - 'align' => 'left', - 'valign' => 'top')); - $out->element('img', array('src' => ($avatar) ? - $avatar->displayUrl() : - Avatar::defaultImage(AVATAR_STREAM_SIZE), - 'class' => 'avatar photo', - 'width' => AVATAR_STREAM_SIZE, - 'height' => AVATAR_STREAM_SIZE, - 'alt' => $profile->getBestName())); - $out->elementEnd('td'); - $out->elementStart('td', array('align' => 'left', - 'valign' => 'top')); - $out->element('a', array('href' => $profile->profileurl), - $profile->nickname); - $out->text(' '); - $out->raw($notice->rendered); - $out->element('br'); // yeah, you know it. I just wrote a
in the middle of my table layout. - $noticeurl = $notice->bestUrl(); - // above should always return an URL - assert(!empty($noticeurl)); - $out->elementStart('a', array('rel' => 'bookmark', - 'class' => 'timestamp', - 'href' => $noticeurl)); - $dt = common_date_iso8601($notice->created); - $out->element('abbr', array('class' => 'published', - 'title' => $dt), - common_date_string($notice->created)); - $out->elementEnd('a'); - if ($notice->hasConversation()) { - $conv = Conversation::staticGet('id', $notice->conversation); - $convurl = $conv->uri; - if (!empty($convurl)) { - $out->text(' '); - $out->element('a', - array('href' => $convurl.'#notice-'.$notice->id, - 'class' => 'response'), - _('in context')); - } - } - $out->elementEnd('td'); - $out->elementEnd('tr'); - } + $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE); + + $out->elementStart('tr'); + $out->elementStart('td', array('width' => AVATAR_STREAM_SIZE, + 'height' => AVATAR_STREAM_SIZE, + 'align' => 'left', + 'valign' => 'top')); + $out->element('img', array('src' => ($avatar) ? + $avatar->displayUrl() : + Avatar::defaultImage(AVATAR_STREAM_SIZE), + 'class' => 'avatar photo', + 'width' => AVATAR_STREAM_SIZE, + 'height' => AVATAR_STREAM_SIZE, + 'alt' => $profile->getBestName())); + $out->elementEnd('td'); + $out->elementStart('td', array('align' => 'left', + 'valign' => 'top')); + $out->element('a', array('href' => $profile->profileurl), + $profile->nickname); + $out->text(' '); + $out->raw($notice->rendered); + $out->element('br'); // yeah, you know it. I just wrote a
in the middle of my table layout. + $noticeurl = $notice->bestUrl(); + // above should always return an URL + assert(!empty($noticeurl)); + $out->elementStart('a', array('rel' => 'bookmark', + 'class' => 'timestamp', + 'href' => $noticeurl)); + $dt = common_date_iso8601($notice->created); + $out->element('abbr', array('class' => 'published', + 'title' => $dt), + common_date_string($notice->created)); + $out->elementEnd('a'); + if ($notice->hasConversation()) { + $conv = Conversation::staticGet('id', $notice->conversation); + $convurl = $conv->uri; + if (!empty($convurl)) { + $out->text(' '); + $out->element('a', + array('href' => $convurl.'#notice-'.$notice->id, + 'class' => 'response'), + _('in context')); + } + } + $out->elementEnd('td'); + $out->elementEnd('tr'); + } - $out->elementEnd('table'); + $out->elementEnd('table'); - $out->raw(sprintf(_('

change your email settings for %2s

'), - common_local_url('emailsettings'), - common_config('site', 'name'))); + $out->raw(sprintf(_('

change your email settings for %2s

'), + common_local_url('emailsettings'), + common_config('site', 'name'))); - $body = $out->getString(); + $body = $out->getString(); - // FIXME: do something for people who don't like HTML email + // FIXME: do something for people who don't like HTML email - mail_to_user($user, _('Updates from your network'), $body, - array('Content-Type' => 'text/html; charset=UTF-8')); + mail_to_user($user, _('Updates from your network'), $body, + array('Content-Type' => 'text/html; charset=UTF-8')); - if (empty($ess)) { + if (empty($ess)) { - $ess = new Email_summary_status(); + $ess = new Email_summary_status(); - $ess->user_id = $user_id; - $ess->created = common_sql_now(); - $ess->last_summary_id = $new_top; - $ess->modified = common_sql_now(); + $ess->user_id = $user_id; + $ess->created = common_sql_now(); + $ess->last_summary_id = $new_top; + $ess->modified = common_sql_now(); - $ess->insert(); + $ess->insert(); - } else { + } else { - $orig = clone($ess); + $orig = clone($ess); - $ess->last_summary_id = $new_top; - $ess->modified = common_sql_now(); + $ess->last_summary_id = $new_top; + $ess->modified = common_sql_now(); - $ess->update($orig); - } + $ess->update($orig); + } - return true; + return true; } } diff --git a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po new file mode 100644 index 0000000000..f9a9250686 --- /dev/null +++ b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po @@ -0,0 +1,75 @@ +# Translation of StatusNet - Gravatar to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Toniher +# -- +# 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: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:28:24+0000\n" +"Language-Team: Catalan \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-01-29 22:24:27+0000\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-gravatar\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GravatarPlugin.php:60 +msgid "Set Gravatar" +msgstr "Defineix un Gravatar" + +#: GravatarPlugin.php:63 +msgid "If you want to use your Gravatar image, click \"Add\"." +msgstr "Si voleu utilitzar la vostra imatge del Gravatar, feu clic a «Afegeix»." + +#: GravatarPlugin.php:68 +msgid "Add" +msgstr "Afegeix" + +#: GravatarPlugin.php:78 +msgid "Remove Gravatar" +msgstr "Suprimeix el Gravatar" + +#: GravatarPlugin.php:81 +msgid "If you want to remove your Gravatar image, click \"Remove\"." +msgstr "" +"Si voleu suprimir la vostra imatge del Gravatar, feu clic a «Suprimeix»." + +#: GravatarPlugin.php:86 +msgid "Remove" +msgstr "Suprimeix" + +#: GravatarPlugin.php:91 +msgid "To use a Gravatar first enter in an email address." +msgstr "Per fer servir un Gravatar, primer introduïu una adreça electrònica." + +#: GravatarPlugin.php:140 +msgid "You do not have an email address set in your profile." +msgstr "No teniu una adreça electrònica definida en el vostre perfil." + +#: GravatarPlugin.php:158 +msgid "Failed to save Gravatar to the database." +msgstr "No s'ha pogut desar el Gravatar a la base de dades." + +#: GravatarPlugin.php:162 +msgid "Gravatar added." +msgstr "S'ha afegit el Gravatar." + +#: GravatarPlugin.php:180 +msgid "Gravatar removed." +msgstr "S'ha suprimit el Gravatar." + +#: GravatarPlugin.php:200 +msgid "" +"The Gravatar plugin allows users to use their Gravatar with StatusNet." +msgstr "" +"El connector del Gravatar permet als usuaris fer servir llur Gravatar amb l'StatusNet." diff --git a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po index ad61f93e9e..b74df493f5 100644 --- a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po @@ -1,6 +1,7 @@ # Translation of StatusNet - OpenX to German (Deutsch) # Exported from translatewiki.net # +# Author: Fujnky # Author: The Evil IP address # -- # This file is distributed under the same license as the StatusNet package. @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-01-29 21:50:47+0000\n" +"POT-Creation-Date: 2011-02-17 10:25+0000\n" +"PO-Revision-Date: 2011-02-17 10:28:59+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-15 11:02:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-29 22:28:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openx\n" @@ -80,17 +81,17 @@ msgstr "" #. TRANS: Form label in OpenX admin panel. Refers to advertisement format. #: openxadminpanel.php:191 msgid "Leaderboard" -msgstr "" +msgstr "Rangliste" #. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. #: openxadminpanel.php:193 msgid "Leaderboard zone" -msgstr "" +msgstr "Ranglisten-Zone" #. TRANS: Form label in OpenX admin panel. Refers to advertisement format. #: openxadminpanel.php:199 msgid "Skyscraper" -msgstr "" +msgstr "Skyscraper" #. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. #: openxadminpanel.php:201